oled_common.h 247 B

123456789101112131415161718
  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. #endif // __OLED_COMMON_H