2018-07-23 08:25:23 +02:00
|
|
|
#ifndef _BUTTON_H
|
|
|
|
#define _BUTTON_H
|
|
|
|
|
2019-05-03 20:24:42 +02:00
|
|
|
#include <SimpleButton.h>
|
2020-03-29 18:08:52 +02:00
|
|
|
#include "irqhandler.h"
|
|
|
|
#include "senddata.h"
|
|
|
|
#include "display.h"
|
|
|
|
#include "payload.h"
|
2019-05-03 20:24:42 +02:00
|
|
|
|
2022-08-04 13:52:16 +02:00
|
|
|
#ifndef BUTTON_ACTIVEHIGH
|
|
|
|
#define BUTTON_ACTIVEHIGH 0
|
|
|
|
#endif
|
|
|
|
|
2019-05-03 20:24:42 +02:00
|
|
|
void button_init(int pin);
|
2018-10-04 22:08:54 +02:00
|
|
|
void readButton();
|
2018-07-23 08:25:23 +02:00
|
|
|
|
|
|
|
#endif
|