LCD 1602 Driver with ESP32 I2C 1.1
This is a complete driver for LCD 1602 using I2C with the ESP32
|
#include "lcd_i2c.h"
Go to the source code of this file.
Functions | |
uint8_t | i2c_open (i2c_master_bus_handle_t *bus_handle, i2c_master_dev_handle_t *dev_handle, const uint8_t address) |
initializes the i2c communications and points the handles to correctly initialized variables on the heap. |
uint8_t i2c_open | ( | i2c_master_bus_handle_t * | bus_handle, |
i2c_master_dev_handle_t * | dev_handle, | ||
const uint8_t | address ) |
initializes the i2c communications and points the handles to correctly initialized variables on the heap.
[out] | bus_handle | handle for initializing the bus |
[out] | dev_handle | handle for initializing the device on bus |
[in] | address | device address on bus to communicate with |
Definition at line 3 of file lcd_i2c.c.