long press increased to 15s

This commit is contained in:
amarofarinha 2024-10-03 13:36:20 +01:00
parent 8fed9f237a
commit f7f1427aef
2 changed files with 5 additions and 5 deletions

View file

@ -51,7 +51,7 @@ const char* mqtt_password = "REDACTED"; // Set NULL for no password
#ifdef EQUIPMENT_STOP_BUTTON
// Equipment stop button behavior. Use NC button for safety reasons.
//LATCHING_SWITCH - Normally closed (NC), latching switch. When pressed it activates e-stop
//MOMENTARY_SWITCH - Short press to activate e-stop, long 5s press to deactivate. E-stop is persistent between reboots
//MOMENTARY_SWITCH - Short press to activate e-stop, long 15s press to deactivate. E-stop is persistent between reboots
volatile STOP_BUTTON_BEHAVIOR equipment_stop_behavior = LATCHING_SWITCH;
#endif