LCD 1602 Driver with ESP32 I2C 1.1
This is a complete driver for LCD 1602 using I2C with the ESP32
|
External functions for LCD 1602 API. More...
Functions | |
LCD_WRITE_STATUS | lcd_1602_send_string (i2c_master_dev_handle_t handle, char *str) |
Writes out data to the LCD. | |
uint8_t | lcd_1602_init (i2c_master_dev_handle_t handle) |
initializes the LCD 1602 correctly according to the datasheet. |
External functions for LCD 1602 API.
uint8_t lcd_1602_init | ( | i2c_master_dev_handle_t | handle | ) |
initializes the LCD 1602 correctly according to the datasheet.
handle | The device handle use to writing on the i2c bus |
Definition at line 141 of file lcd_1602.c.
LCD_WRITE_STATUS lcd_1602_send_string | ( | i2c_master_dev_handle_t | handle, |
char * | str ) |
Writes out data to the LCD.
handle | The device handle used to writing on the i2c bus |
str | The string to be written to the LCD |
Definition at line 111 of file lcd_1602.c.