| 123456789101112131415161718 |
- #ifndef __OLED_COMMON_H
- #define __OLED_COMMON_H
- //
- void init_oled(void);
- //
- void test_oled(void);
- //
- void oled_draw_rec(int x_start, int y_start, int x_end, int y_end, uint8_t color);
- //
- void init_gpio_oled(void);
- #endif // __OLED_COMMON_H
|