Jhd-2x16-i2c Proteus Best Info
: The "I2C" part of the model refers to an onboard PCF8574 I/O expander . This chip converts the serial data from the I2C bus into the parallel signals needed by the LCD, significantly simplifying circuit design.
void main() I2C_Init(); I2C_Start(); I2C_Write(I2C_ADDRESS, 0x00); I2C_Write(I2C_ADDRESS, 'H'); I2C_Write(I2C_ADDRESS, 'e'); I2C_Write(I2C_ADDRESS, 'l'); I2C_Write(I2C_ADDRESS, 'l'); I2C_Write(I2C_ADDRESS, 'o'); I2C_Write(I2C_ADDRESS, ' '); I2C_Write(I2C_ADDRESS, 'W'); I2C_Write(I2C_ADDRESS, 'o'); I2C_Write(I2C_ADDRESS, 'r'); I2C_Write(I2C_ADDRESS, 'l'); I2C_Write(I2C_ADDRESS, 'd'); I2C_Stop(); jhd-2x16-i2c proteus
