fix issue #752
This commit is contained in:
parent
e73bd19a82
commit
399e815cd8
@ -7,6 +7,10 @@
|
|||||||
#include "display.h"
|
#include "display.h"
|
||||||
#include "payload.h"
|
#include "payload.h"
|
||||||
|
|
||||||
|
#ifndef BUTTON_ACTIVEHIGH
|
||||||
|
#define BUTTON_ACTIVEHIGH 0
|
||||||
|
#endif
|
||||||
|
|
||||||
void button_init(int pin);
|
void button_init(int pin);
|
||||||
void readButton();
|
void readButton();
|
||||||
|
|
||||||
|
@ -11,10 +11,10 @@ static const char TAG[] = __FILE__;
|
|||||||
static Button *b = NULL;
|
static Button *b = NULL;
|
||||||
|
|
||||||
void button_init(int pin) {
|
void button_init(int pin) {
|
||||||
#ifdef BUTTON_PULLDOWN
|
#ifdef BUTTON_PULLUP
|
||||||
b = new Button(pin);
|
|
||||||
#else
|
|
||||||
b = new ButtonPullup(pin);
|
b = new ButtonPullup(pin);
|
||||||
|
#else
|
||||||
|
b = new Button(pin, !BUTTON_ACTIVEHIGH);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// attach events to the button
|
// attach events to the button
|
||||||
|
Loading…
Reference in New Issue
Block a user