3D printed Arduino Airsoft Chronograph
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

lcd.h 324B

12345678910111213141516171819
  1. /*
  2. * lcd.h
  3. *
  4. * OpenChrono BB speed measurement device.
  5. *
  6. * Copyright (c) 2022 Thomas Buck <thomas@xythobuz.de>
  7. *
  8. * SSD1306 OLED display connected via I2C.
  9. */
  10. #ifndef __LCD_H__
  11. #define __LCD_H__
  12. void lcd_init(void);
  13. void lcd_new_value(void);
  14. void lcd_draw(uint8_t screen);
  15. void lcd_loop(void);
  16. #endif // __LCD_H__