WLED/wled00/button.cpp

110 lines
2.3 KiB
C++
Raw Normal View History

#include "wled.h"
2020-03-25 10:14:23 +01:00
/*
* Physical IO
*/
void shortPressAction()
{
if (!macroButton)
{
toggleOnOff();
2020-02-22 16:17:32 +01:00
colorUpdated(NOTIFIER_CALL_MODE_BUTTON);
} else {
2020-11-06 22:12:48 +01:00
applyPreset(macroButton);
}
}
bool isButtonPressed()
{
2021-01-17 00:20:31 +01:00
if (btnPin>=0 && digitalRead(btnPin) == LOW) return true;
#ifdef TOUCHPIN
if (touchRead(TOUCHPIN) <= TOUCH_THRESHOLD) return true;
#endif
return false;
}
void handleButton()
{
2021-01-17 00:20:31 +01:00
if (btnPin<0 || !buttonEnabled) return;
if (isButtonPressed()) //pressed
{
2019-10-18 12:19:52 +02:00
if (!buttonPressedBefore) buttonPressedTime = millis();
buttonPressedBefore = true;
2019-10-18 12:19:52 +02:00
if (millis() - buttonPressedTime > 600) //long press
{
if (!buttonLongPressed)
{
2020-11-06 22:12:48 +01:00
if (macroLongPress) {applyPreset(macroLongPress);}
2019-10-18 12:19:52 +02:00
else _setRandomColor(false,true);
buttonLongPressed = true;
}
}
}
else if (!isButtonPressed() && buttonPressedBefore) //released
{
long dur = millis() - buttonPressedTime;
if (dur < 50) {buttonPressedBefore = false; return;} //too short "press", debounce
bool doublePress = buttonWaitTime;
buttonWaitTime = 0;
2019-10-18 12:19:52 +02:00
if (dur > 6000) //long press
{
2020-03-25 10:14:23 +01:00
WLED::instance().initAP(true);
}
2019-10-18 12:19:52 +02:00
else if (!buttonLongPressed) { //short press
if (macroDoublePress)
{
2020-11-06 22:12:48 +01:00
if (doublePress) applyPreset(macroDoublePress);
else buttonWaitTime = millis();
} else shortPressAction();
}
buttonPressedBefore = false;
2019-10-18 12:19:52 +02:00
buttonLongPressed = false;
}
if (buttonWaitTime && millis() - buttonWaitTime > 450 && !buttonPressedBefore)
{
buttonWaitTime = 0;
shortPressAction();
}
}
void handleIO()
{
handleButton();
//set relay when LEDs turn on
if (strip.getBrightness())
{
lastOnTime = millis();
if (offMode)
{
2021-01-17 00:20:31 +01:00
if (rlyPin>=0) {
pinMode(rlyPin, OUTPUT);
digitalWrite(rlyPin, rlyMde);
}
offMode = false;
}
} else if (millis() - lastOnTime > 600)
{
2021-01-17 00:20:31 +01:00
if (!offMode) {
#ifdef ESP8266
2021-02-24 20:23:32 +01:00
// turn off built-in LED if strip is turned off
// this will break digital bus so will need to be reinitialised on On
pinMode(LED_BUILTIN, OUTPUT);
digitalWrite(LED_BUILTIN, HIGH);
#endif
2021-01-17 00:20:31 +01:00
if (rlyPin>=0) {
pinMode(rlyPin, OUTPUT);
digitalWrite(rlyPin, !rlyMde);
}
}
offMode = true;
}
}