12 lines
186 B
C
12 lines
186 B
C
|
#ifndef WLED_BUTTON_H
|
||
|
#define WLED_BUTTON_H
|
||
|
#include <Arduino.h>
|
||
|
/*
|
||
|
* Physical IO
|
||
|
*/
|
||
|
|
||
|
void shortPressAction();
|
||
|
void handleButton();
|
||
|
void handleIO();
|
||
|
|
||
|
#endif // WLED_BUTTON_H
|