blob: 1b58a69e22ace0bd140d54413e0c4d15483376cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
/**
* @file lcd.hpp
* Provides functionality to mess with the LCD (...on UART2).
*/
#ifndef LCD_HPP_
#define LCD_HPP_
namespace lcd {
/**
* Initializes the LCD.
*/
void init(void);
/**
* Prints a string to the given line and column.
* NO ERROR CHECKING DONE!
* @param line the line to write to
* @param x the column to start on
* @param s the string to write
*/
void prints(int line, int x, const char *s);
/**
* Prints a decimal number to the given line and column.
* NO ERROR CHECKING DONE!
* @param line the line to write to
* @param x the column to start on
* @param val the number to write
*/
void printn(int line, int x, int val);
/**
* Clears the LCD text buffer.
* Called at the top of the loop lcd printing is done in.
* TODO make something better
*/
void flush(void);
}
#endif // LCD_HPP_
|