
Lezione_1
Dependencies: TS_DISCO_F746NG LCD_DISCO_F746NG BSP_DISCO_F746NG BUTTON_GROUP
Diff: main.cpp
- Revision:
- 2:ded81c4c9643
- Parent:
- 1:f5a3a0a28be5
--- a/main.cpp Mon Jan 28 08:17:20 2019 +0000 +++ b/main.cpp Mon Jan 28 09:11:18 2019 +0000 @@ -14,6 +14,13 @@ Serial pc(USBTX, USBRX); +LCD_DISCO_F746NG lcd_; +TS_DISCO_F746NG ts_; + +const uint32_t BACK_COLOR = 0xFF006A6C; + +void screen_setup_menu(void); + void init_lcd(void) { lcd_.Clear(LCD_COLOR_WHITE); @@ -32,7 +39,7 @@ wait(0.5); lcd_.SetFont(&Font16); - screen_setup_menu(void) + screen_setup_menu(); }