automatic ntp update

This commit is contained in:
Siwat Sirichai 2023-09-17 01:12:29 +07:00
parent 893a7e9203
commit 95d968a920
3 changed files with 28 additions and 11 deletions

23
src/user_code.hpp Normal file
View file

@ -0,0 +1,23 @@
#ifndef USER_CODE
#define USER_CODE
#include <ESPMegaPRO.h>
void user_pre_init() {
}
void user_init() {
}
void user_loop() {
}
void virtual_interrupt_user_callback(int pin, int state) {
}
void timer_tick_callback() {
}
#endif