mirror of
https://github.com/skot/ESP-Miner.git
synced 2025-03-18 22:02:03 +01:00
23 lines
388 B
C
23 lines
388 B
C
#ifndef SCREEN_H_
|
|
#define SCREEN_H_
|
|
|
|
typedef enum {
|
|
SCR_SELF_TEST,
|
|
SCR_OVERHEAT,
|
|
SCR_INVALID_ASIC,
|
|
SCR_CONFIGURE,
|
|
SCR_CONNECTION,
|
|
SCR_LOGO,
|
|
SCR_URLS,
|
|
SCR_STATS,
|
|
MAX_SCREENS,
|
|
} screen_t;
|
|
|
|
#define SCR_CAROUSEL_START SCR_URLS
|
|
#define SCR_CAROUSEL_END SCR_STATS
|
|
|
|
esp_err_t screen_start(void * pvParameters);
|
|
void screen_next(void);
|
|
|
|
#endif /* SCREEN_H_ */
|