Merge pull request #1850 from eg321/VL53L0X-gestures
Support of simple gestures for VL53L0X laser sensor
This commit is contained in:
commit
48c0360877
35
usermods/VL53L0X_gestures/readme.md
Normal file
35
usermods/VL53L0X_gestures/readme.md
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
# Description
|
||||||
|
|
||||||
|
That usermod implements support of simple hand gestures with VL53L0X sensor: on/off and brightness correction.
|
||||||
|
It can be useful for kitchen strips to avoid any touches.
|
||||||
|
- on/off - just swipe a hand below your sensor ("shortPressAction" is called and can be customized through WLED macros)
|
||||||
|
- brightness correction - keep your hand below sensor for 1 second to switch to "brightness" mode.
|
||||||
|
Configure brightness by changing distance to the sensor (see parameters below for customization).
|
||||||
|
"macroLongPress" is also called here.
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
1. Attach VL53L0X sensor to i2c pins according to default pins for your board.
|
||||||
|
2. Add `-D USERMOD_VL53L0X_GESTURES` to your build flags at platformio.ini (plaformio_override.ini) for needed environment.
|
||||||
|
In my case, for example: `build_flags = ${common.build_flags_esp8266} -D RLYPIN=12 -D USERMOD_VL53L0X_GESTURES`
|
||||||
|
3. Add "pololu/VL53L0X" dependency below to `lib_deps` like this:
|
||||||
|
```ini
|
||||||
|
lib_deps = ${env.lib_deps}
|
||||||
|
pololu/VL53L0X @ ^1.3.0
|
||||||
|
```
|
||||||
|
|
||||||
|
My entire `platformio_override.ini` for example (for nodemcu board):
|
||||||
|
```ini
|
||||||
|
[platformio]
|
||||||
|
default_envs = nodemcu
|
||||||
|
|
||||||
|
[env:nodemcu]
|
||||||
|
board = nodemcu
|
||||||
|
platform = ${common.platform_wled_default}
|
||||||
|
platform_packages = ${common.platform_packages}
|
||||||
|
board_build.ldscript = ${common.ldscript_4m1m}
|
||||||
|
build_unflags = ${common.build_unflags}
|
||||||
|
build_flags = ${common.build_flags_esp8266} -D RLYPIN=12 -D USERMOD_VL53L0X_GESTURES
|
||||||
|
lib_deps = ${env.lib_deps}
|
||||||
|
pololu/VL53L0X @ ^1.3.0
|
||||||
|
```
|
121
usermods/VL53L0X_gestures/usermod_vl53l0x_gestures.h
Normal file
121
usermods/VL53L0X_gestures/usermod_vl53l0x_gestures.h
Normal file
@ -0,0 +1,121 @@
|
|||||||
|
/*
|
||||||
|
* That usermod implements support of simple hand gestures with VL53L0X sensor: on/off and brightness correction.
|
||||||
|
* It can be useful for kitchen strips to avoid any touches.
|
||||||
|
* - on/off - just swipe a hand below your sensor ("shortPressAction" is called and can be customized through WLED macros)
|
||||||
|
* - brightness correction - keep your hand below sensor for 1 second to switch to "brightness" mode.
|
||||||
|
* Configure brightness by changing distance to the sensor (see parameters below for customization).
|
||||||
|
* "macroLongPress" is also called here.
|
||||||
|
*
|
||||||
|
* Enabling this mod usermod:
|
||||||
|
* 1. Attach VL53L0X sensor to i2c pins according to default pins for your board.
|
||||||
|
* 2. Add "-D USERMOD_VL53L0X_GESTURES" to your build flags at platformio.ini (plaformio_override.ini) for needed environment.
|
||||||
|
* In my case, for example: build_flags = ${common.build_flags_esp8266} -D RLYPIN=12 -D USERMOD_VL53L0X_GESTURES
|
||||||
|
* 3. Add "pololu/VL53L0X" dependency to lib_deps like this:
|
||||||
|
* lib_deps = ${env.lib_deps}
|
||||||
|
* pololu/VL53L0X @ ^1.3.0
|
||||||
|
*/
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "wled.h"
|
||||||
|
|
||||||
|
#include <Wire.h>
|
||||||
|
#include <VL53L0X.h>
|
||||||
|
|
||||||
|
#ifndef VL53L0X_MAX_RANGE_MM
|
||||||
|
#define VL53L0X_MAX_RANGE_MM 230 // max height in millimiters to react for motions
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef VL53L0X_MIN_RANGE_OFFSET
|
||||||
|
#define VL53L0X_MIN_RANGE_OFFSET 60 // minimal range in millimiters that sensor can detect. Used in long motions to correct brightnes calculation.
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef VL53L0X_DELAY_MS
|
||||||
|
#define VL53L0X_DELAY_MS 100 // how often to get data from sensor
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef VL53L0X_LONG_MOTION_DELAY_MS
|
||||||
|
#define VL53L0X_LONG_MOTION_DELAY_MS 1000 // how often to get data from sensor
|
||||||
|
#endif
|
||||||
|
|
||||||
|
class UsermodVL53L0XGestures : public Usermod {
|
||||||
|
private:
|
||||||
|
//Private class members. You can declare variables and functions only accessible to your usermod here
|
||||||
|
unsigned long lastTime = 0;
|
||||||
|
VL53L0X sensor;
|
||||||
|
|
||||||
|
bool wasMotionBefore = false;
|
||||||
|
bool isLongMotion = false;
|
||||||
|
unsigned long motionStartTime = 0;
|
||||||
|
|
||||||
|
public:
|
||||||
|
|
||||||
|
void setup() {
|
||||||
|
Wire.begin();
|
||||||
|
|
||||||
|
sensor.setTimeout(150);
|
||||||
|
if (!sensor.init())
|
||||||
|
{
|
||||||
|
DEBUG_PRINTLN(F("Failed to detect and initialize VL53L0X sensor!"));
|
||||||
|
} else {
|
||||||
|
sensor.setMeasurementTimingBudget(20000); // set high speed mode
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void loop() {
|
||||||
|
if (millis() - lastTime > VL53L0X_DELAY_MS)
|
||||||
|
{
|
||||||
|
lastTime = millis();
|
||||||
|
|
||||||
|
int range = sensor.readRangeSingleMillimeters();
|
||||||
|
DEBUG_PRINTF(F("range: %d, brightness: %d"), range, bri);
|
||||||
|
|
||||||
|
if (range < VL53L0X_MAX_RANGE_MM)
|
||||||
|
{
|
||||||
|
if (!wasMotionBefore)
|
||||||
|
{
|
||||||
|
motionStartTime = millis();
|
||||||
|
DEBUG_PRINTF(F("motionStartTime: %d"), motionStartTime);
|
||||||
|
}
|
||||||
|
wasMotionBefore = true;
|
||||||
|
|
||||||
|
if (millis() - motionStartTime > VL53L0X_LONG_MOTION_DELAY_MS) //long motion
|
||||||
|
{
|
||||||
|
DEBUG_PRINTF(F("long motion: %d"), motionStartTime);
|
||||||
|
if (!isLongMotion)
|
||||||
|
{
|
||||||
|
if (macroLongPress)
|
||||||
|
{
|
||||||
|
applyMacro(macroLongPress);
|
||||||
|
}
|
||||||
|
isLongMotion = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// set brightness according to range
|
||||||
|
bri = (VL53L0X_MAX_RANGE_MM - max(range, VL53L0X_MIN_RANGE_OFFSET)) * 255 / (VL53L0X_MAX_RANGE_MM - VL53L0X_MIN_RANGE_OFFSET);
|
||||||
|
DEBUG_PRINTF(F("new brightness: %d"), bri);
|
||||||
|
colorUpdated(1);
|
||||||
|
}
|
||||||
|
} else if (wasMotionBefore) { //released
|
||||||
|
long dur = millis() - motionStartTime;
|
||||||
|
|
||||||
|
if (!isLongMotion)
|
||||||
|
{ //short press
|
||||||
|
DEBUG_PRINTF(F("shortPressAction..."));
|
||||||
|
shortPressAction();
|
||||||
|
}
|
||||||
|
wasMotionBefore = false;
|
||||||
|
isLongMotion = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* getId() allows you to optionally give your V2 usermod an unique ID (please define it in const.h!).
|
||||||
|
* This could be used in the future for the system to determine whether your usermod is installed.
|
||||||
|
*/
|
||||||
|
uint16_t getId()
|
||||||
|
{
|
||||||
|
return USERMOD_ID_VL53L0X;
|
||||||
|
}
|
||||||
|
};
|
@ -32,6 +32,7 @@
|
|||||||
#define USERMOD_ID_AUTO_SAVE 9 //Usermod "usermod_v2_auto_save.h"
|
#define USERMOD_ID_AUTO_SAVE 9 //Usermod "usermod_v2_auto_save.h"
|
||||||
#define USERMOD_ID_DHT 10 //Usermod "usermod_dht.h"
|
#define USERMOD_ID_DHT 10 //Usermod "usermod_dht.h"
|
||||||
#define USERMOD_ID_MODE_SORT 11 //Usermod "usermod_v2_mode_sort.h"
|
#define USERMOD_ID_MODE_SORT 11 //Usermod "usermod_v2_mode_sort.h"
|
||||||
|
#define USERMOD_ID_VL53L0X 12 //Usermod "usermod_vl53l0x_gestures.h"
|
||||||
|
|
||||||
//Access point behavior
|
//Access point behavior
|
||||||
#define AP_BEHAVIOR_BOOT_NO_CONN 0 //Open AP when no connection after boot
|
#define AP_BEHAVIOR_BOOT_NO_CONN 0 //Open AP when no connection after boot
|
||||||
|
@ -45,6 +45,11 @@
|
|||||||
#include "../usermods/DHT/usermod_dht.h"
|
#include "../usermods/DHT/usermod_dht.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef USERMOD_VL53L0X_GESTURES
|
||||||
|
#include <Wire.h> //it's needed here to correctly resolve dependencies
|
||||||
|
#include "../usermods/VL53L0X_gestures/usermod_vl53l0x_gestures.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
void registerUsermods()
|
void registerUsermods()
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
@ -87,4 +92,8 @@ void registerUsermods()
|
|||||||
#ifdef USERMOD_DHT
|
#ifdef USERMOD_DHT
|
||||||
usermods.add(new UsermodDHT());
|
usermods.add(new UsermodDHT());
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef USERMOD_VL53L0X_GESTURES
|
||||||
|
usermods.add(new UsermodVL53L0XGestures());
|
||||||
|
#endif
|
||||||
}
|
}
|
@ -568,7 +568,7 @@ WLED_GLOBAL UsermodManager usermods _INIT(UsermodManager());
|
|||||||
#else
|
#else
|
||||||
#define DEBUG_PRINT(x)
|
#define DEBUG_PRINT(x)
|
||||||
#define DEBUG_PRINTLN(x)
|
#define DEBUG_PRINTLN(x)
|
||||||
#define DEBUG_PRINTF(x)
|
#define DEBUG_PRINTF(x...)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef WLED_DEBUG_FS
|
#ifdef WLED_DEBUG_FS
|
||||||
|
Loading…
Reference in New Issue
Block a user