2023-09-16 18:12:29 +00:00
|
|
|
#ifndef USER_CODE
|
|
|
|
#define USER_CODE
|
2023-09-29 16:18:21 +00:00
|
|
|
#ifndef CORE_LOADED
|
|
|
|
#define CORE_LOADED
|
|
|
|
#include <espmega_iot_core.hpp>
|
|
|
|
#endif
|
|
|
|
void user_pre_init();
|
|
|
|
void user_init();
|
|
|
|
void user_loop();
|
|
|
|
void virtual_interrupt_user_callback(int pin, int state);
|
|
|
|
void timer_tick_callback();
|
|
|
|
void external_lcd_callback(int touch_hex);
|
2023-09-16 18:12:29 +00:00
|
|
|
#endif
|