oled_common.h 296 B

1234567891011121314151617181920
  1. #ifndef __OLED_COMMON_H
  2. #define __OLED_COMMON_H
  3. //
  4. void init_oled(void);
  5. //
  6. void test_oled(void);
  7. //
  8. void oled_draw_rec(int x_start, int y_start, int x_end, int y_end, uint8_t color);
  9. //
  10. void init_gpio_oled(void);
  11. //
  12. void oled_draw_string_frame(uint8_t str_num);
  13. #endif // __OLED_COMMON_H