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