ESP32-PaxCounter/src/button.cpp

44 lines
842 B
C++
Raw Normal View History

2018-07-23 08:25:23 +02:00
#ifdef HAS_BUTTON
#include "globals.h"
#include "button.h"
2018-07-23 08:25:23 +02:00
2019-05-03 20:24:42 +02:00
using namespace simplebutton;
2018-07-23 08:25:23 +02:00
// Local logging tag
2019-02-27 00:49:32 +01:00
static const char TAG[] = __FILE__;
2018-07-23 08:25:23 +02:00
2019-05-03 20:24:42 +02:00
static Button *b = NULL;
void button_init(int pin) {
#ifdef BUTTON_PULLDOWN
b = new Button(pin);
#else
b = new ButtonPullup(pin);
#endif
// attach events to the button
b->setOnDoubleClicked([]() {});
b->setOnClicked([]() {
#ifdef HAS_DISPLAY
dp_refresh(true); // switch to next display page
2019-05-31 13:20:11 +02:00
#endif
#ifdef HAS_MATRIX_DISPLAY
refreshTheMatrixDisplay(true); // switch to next display page
#endif
2019-07-13 18:21:13 +02:00
});
2019-05-31 13:20:11 +02:00
2019-07-13 18:21:13 +02:00
b->setOnHolding([]() {
2019-05-03 20:24:42 +02:00
payload.reset();
payload.addButton(0x01);
SendPayload(BUTTONPORT, prio_normal);
});
// attach interrupt to the button
attachInterrupt(digitalPinToInterrupt(pin), ButtonIRQ, CHANGE);
2018-07-23 08:25:23 +02:00
}
2019-05-03 20:24:42 +02:00
void readButton() { b->update(); }
2018-07-23 08:25:23 +02:00
#endif