evaluatedSwitch: avoid random trigger (increase threshold)

- with new hardware noticed that sometimes switch gets triggered x1
  randomly when driving forward (EMI ?)
- increased delay options (less responsive but more controlled)
This commit is contained in:
jonny_l480 2023-08-21 09:49:05 +02:00
parent 3ba37baeda
commit d51e8ae006

View File

@ -22,8 +22,8 @@ extern "C"
class gpio_evaluatedSwitch {
public:
//--- input ---
uint32_t minOnMs = 30;
uint32_t minOffMs = 30;
uint32_t minOnMs = 90;
uint32_t minOffMs = 60;
gpio_evaluatedSwitch( //constructor minimal (default parameters pullup=true, inverted=false)
gpio_num_t gpio_num_declare
);