|
@ -12,6 +12,16 @@ Copyright (C) 2016-2017 by Xose Pérez <xose dot perez at gmail dot com> |
|
|
|
|
|
|
|
|
#ifdef SONOFF_DUAL
|
|
|
#ifdef SONOFF_DUAL
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef MQTT_BUTTON_TOPIC
|
|
|
|
|
|
void buttonMQTT(unsigned char id) { |
|
|
|
|
|
String mqttGetter = getSetting("mqttGetter", MQTT_USE_GETTER); |
|
|
|
|
|
char buffer[strlen(MQTT_BUTTON_TOPIC) + mqttGetter.length() + 3]; |
|
|
|
|
|
sprintf(buffer, "%s/%d%s", MQTT_BUTTON_TOPIC, id, mqttGetter.c_str()); |
|
|
|
|
|
mqttSend(buffer, 1); |
|
|
|
|
|
mqttSend(buffer, 0); |
|
|
|
|
|
} |
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
void buttonSetup() {} |
|
|
void buttonSetup() {} |
|
|
|
|
|
|
|
|
void buttonLoop() { |
|
|
void buttonLoop() { |
|
@ -29,7 +39,12 @@ void buttonLoop() { |
|
|
// Since we are not passing back RELAY2 value
|
|
|
// Since we are not passing back RELAY2 value
|
|
|
// (in the relayStatus method) it will only be present
|
|
|
// (in the relayStatus method) it will only be present
|
|
|
// here if it has actually been pressed
|
|
|
// here if it has actually been pressed
|
|
|
if ((value & 4) == 4) value = value ^ 1; |
|
|
|
|
|
|
|
|
if ((value & 4) == 4) { |
|
|
|
|
|
value = value ^ 1; |
|
|
|
|
|
#ifdef MQTT_BUTTON_TOPIC
|
|
|
|
|
|
buttonMQTT(0); |
|
|
|
|
|
#endif
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
// Otherwise check if any of the other two BUTTONs
|
|
|
// Otherwise check if any of the other two BUTTONs
|
|
|
// (in the header) has been pressent, but we should
|
|
|
// (in the header) has been pressent, but we should
|
|
@ -59,21 +74,36 @@ void buttonLoop() { |
|
|
#include <DebounceEvent.h>
|
|
|
#include <DebounceEvent.h>
|
|
|
#include <vector>
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
|
std::vector<DebounceEvent *> _buttons; |
|
|
|
|
|
|
|
|
typedef struct { |
|
|
|
|
|
DebounceEvent * button; |
|
|
|
|
|
unsigned int relayID; |
|
|
|
|
|
} button_t; |
|
|
|
|
|
|
|
|
|
|
|
std::vector<button_t> _buttons; |
|
|
|
|
|
|
|
|
|
|
|
#ifdef MQTT_BUTTON_TOPIC
|
|
|
|
|
|
void buttonMQTT(unsigned char id) { |
|
|
|
|
|
if (id >= _buttons.size()) return; |
|
|
|
|
|
String mqttGetter = getSetting("mqttGetter", MQTT_USE_GETTER); |
|
|
|
|
|
char buffer[strlen(MQTT_BUTTON_TOPIC) + mqttGetter.length() + 3]; |
|
|
|
|
|
sprintf(buffer, "%s/%d%s", MQTT_BUTTON_TOPIC, id, mqttGetter.c_str()); |
|
|
|
|
|
mqttSend(buffer, _buttons[id].button->pressed() ? "1" : "0"); |
|
|
|
|
|
} |
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
void buttonSetup() { |
|
|
void buttonSetup() { |
|
|
|
|
|
|
|
|
#ifdef BUTTON1_PIN
|
|
|
#ifdef BUTTON1_PIN
|
|
|
_buttons.push_back(new DebounceEvent(BUTTON1_PIN)); |
|
|
|
|
|
|
|
|
_buttons.push_back({new DebounceEvent(BUTTON1_PIN), BUTTON1_RELAY}); |
|
|
#endif
|
|
|
#endif
|
|
|
#ifdef BUTTON2_PIN
|
|
|
#ifdef BUTTON2_PIN
|
|
|
_buttons.push_back(new DebounceEvent(BUTTON2_PIN)); |
|
|
|
|
|
|
|
|
_buttons.push_back({new DebounceEvent(BUTTON2_PIN), BUTTON2_RELAY}); |
|
|
#endif
|
|
|
#endif
|
|
|
#ifdef BUTTON3_PIN
|
|
|
#ifdef BUTTON3_PIN
|
|
|
_buttons.push_back(new DebounceEvent(BUTTON3_PIN)); |
|
|
|
|
|
|
|
|
_buttons.push_back({new DebounceEvent(BUTTON3_PIN), BUTTON3_RELAY}); |
|
|
#endif
|
|
|
#endif
|
|
|
#ifdef BUTTON4_PIN
|
|
|
#ifdef BUTTON4_PIN
|
|
|
_buttons.push_back(new DebounceEvent(BUTTON4_PIN)); |
|
|
|
|
|
|
|
|
_buttons.push_back({new DebounceEvent(BUTTON4_PIN), BUTTON4_RELAY}); |
|
|
#endif
|
|
|
#endif
|
|
|
|
|
|
|
|
|
DEBUG_MSG("[BUTTON] Number of buttons: %d\n", _buttons.size()); |
|
|
DEBUG_MSG("[BUTTON] Number of buttons: %d\n", _buttons.size()); |
|
@ -83,14 +113,21 @@ void buttonSetup() { |
|
|
void buttonLoop() { |
|
|
void buttonLoop() { |
|
|
|
|
|
|
|
|
for (unsigned int i=0; i < _buttons.size(); i++) { |
|
|
for (unsigned int i=0; i < _buttons.size(); i++) { |
|
|
if (_buttons[i]->loop()) { |
|
|
|
|
|
uint8_t event = _buttons[i]->getEvent(); |
|
|
|
|
|
|
|
|
if (_buttons[i].button->loop()) { |
|
|
|
|
|
uint8_t event = _buttons[i].button->getEvent(); |
|
|
DEBUG_MSG("[BUTTON] Pressed #%d, event: %d\n", i, event); |
|
|
DEBUG_MSG("[BUTTON] Pressed #%d, event: %d\n", i, event); |
|
|
|
|
|
#ifdef MQTT_BUTTON_TOPIC
|
|
|
|
|
|
buttonMQTT(i); |
|
|
|
|
|
#endif
|
|
|
if (i == 0) { |
|
|
if (i == 0) { |
|
|
if (event == EVENT_DOUBLE_CLICK) createAP(); |
|
|
if (event == EVENT_DOUBLE_CLICK) createAP(); |
|
|
if (event == EVENT_LONG_CLICK) ESP.reset(); |
|
|
if (event == EVENT_LONG_CLICK) ESP.reset(); |
|
|
} |
|
|
} |
|
|
if (event == EVENT_SINGLE_CLICK) relayToggle(i); |
|
|
|
|
|
|
|
|
if (event == EVENT_SINGLE_CLICK) { |
|
|
|
|
|
if (_buttons[i].relayID > 0) { |
|
|
|
|
|
relayToggle(_buttons[i].relayID - 1); |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|