epochMilli = (uint64_t)ts.tv_sec * (uint64_t)1000 + (uint64_t)(ts.tv_nsec / 1000000L) ;
}
-static unsigned int millis () {
+unsigned int millis () {
uint64_t now ;
struct timespec ts ;
clock_gettime (CLOCK_MONOTONIC_RAW, &ts) ;
extern void gpio_save_actions();
extern int gpio_init();
extern void gpio_close();
+extern void do_switch_action(enum ACTION action, enum ACTION_MODE mode)
+extern unsigned int millis(); // to allow debouncing in i2c.c
#ifdef LOCALCW
extern int CWL_BUTTON;