stc_rpncalc/src/lcd.h

23 lines
435 B
C
Raw Normal View History

2019-03-20 05:34:51 +01:00
#ifndef LCD_H
#define LCD_H
#define MAX_CHARS_PER_LINE 16
2019-03-20 05:34:51 +01:00
#define MAX_ROWS 2
void LCD_Open(void);
void LCD_Clear(void);
void LCD_GoTo(unsigned int row, unsigned int col);
void LCD_SingleLineGoTo(unsigned int row_to);
void LCD_OutString(const char* string);
short TERMIO_PutChar(unsigned char letter);
2019-03-20 08:21:11 +01:00
void LCD_OutNibble(uint8_t x);
void LCD_ClearToEnd(void);
2019-03-20 05:34:51 +01:00
unsigned char LCD_Timeout_Error(void);
#endif