0
mirror of https://github.com/Indemsys/Frequency_Inverter.git synced 2026-04-21 18:17:22 +00:00
Files
2022-01-04 12:22:53 +02:00

14 lines
306 B
C

#ifndef __LCD_CONTROL
#define __LCD_CONTROL
void LCD_init(void);
void LCD_wr_data(int data);
void LCD_wr_cmd(int cmd);
void LCD_print_char(char ch, int x, int y);
void LCD_set_pos(int x, int y);
void LCD_print_str(char *str, int x, int y);
void LCD_clear_row(int row);
void LCD_clear_all(void);
#endif