1 
2 
3 #ifndef _OLED_H_
4 #define _OLED_H_
5 
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
9 
10 typedef enum {
11     OLED_STR_IDLE,
12     OLED_STR_WAKEUP,
13     OLED_STR_LIGHT_ON,
14     OLED_STR_LIGHT_OFF,
15     OLED_STR_MAX
16 } oled_str_e;
17 
18 void oled_show(oled_str_e str);
19 
20 #ifdef __cplusplus
21 }  // extern "C"
22 #endif
23 #endif
24