You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
286 B
C

#include <stdint.h>
extern int8_t menu_val_timezone;
extern uint8_t menu_val_format;
typedef enum {
OFF,
TIMEZONE,
FORMAT,
EXIT
} menu_state_t;
void enter_menu(void);
const char* get_menu_text(void);
uint8_t get_menu_active(void);
void menu_up_down(uint8_t up_down);