Hercules
display.cpp
Go to the documentation of this file.
1 #include "display.h"
2 #include "LCD_DISCO_F746NG.h"
3 
4 LCD_DISCO_F746NG screen;
5 
7 {
8  //screen.Init();
9 }
10 
11 void Display::String(int line, u_int8_t *text, Text_AlignModeTypdef Mode)
12 {
13  screen.DisplayStringAt(0, LINE(line), text, Mode);
14 }
LCD_DISCO_F746NG screen
Definition: display.cpp:4
Display()
Definition: display.cpp:6
uint8_t text[30]
Definition: main.cpp:42
void String(int line, u_int8_t *text, Text_AlignModeTypdef Mode)
Definition: display.cpp:11