12345678910111213141516171819202122232425262728293031 |
- #ifndef IOT_BOARDBUTTON_H_
- #define IOT_BOARDBUTTON_H_
- typedef void (*ButtonPressedCallback)(char *arg);
- int Board_IsButtonPressedF2(void);
- int Board_InitButtonF1(ButtonPressedCallback, char *arg);
- int Board_InitButtonF2(ButtonPressedCallback, char *arg);
- #endif
|