| 1234567891011121314151617181920 |
- #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);
- //
- void oled_draw_string_frame(uint8_t str_num);
- #endif // __OLED_COMMON_H
|