News

This Arduino sketch demonstrates how to use an I2C-enabled LCD display with an Arduino board. The LiquidCrystal_I2C library is used to control the LCD, and the sketch also includes a function to ...
Arduino library for the I2C LCD display, typical 20x4 characters. The library is inspired by the excellent New-LiquidCrystal library by F. Malpartida. Therefore the interface is kept quite identical, ...
[Johngineer] found himself in need of an I2C sniffer, but didn’t have one available. Necessity is the mother of invention, so he put together this I2C sniffer sketch for Arduino. The arduino … ...
[Tom Fleet] spent the dreary weekend inside learning how to drive this T6963C based graphic LCD controller. Although this is his first time venturing away from HD44780 character displays, the avail… ...
The I2C and SPI Education System is an Arduino shield that has been combined with a web based tutorial system to help users learn more about how to talk to I2C and SPI components.
Of all the Arduino projects we've seen 'round here, this is certainly one of them! Using nothing but a Graphics LCD, an Arduino, and a WebSocket server he wrote using Python / Tornado, ...
Next steps shows how the master (Arduino) reads from the slave I2C device. Wire.requestFrom(address, 1) command expects to receive 1 byte of data from the TC74 sensor. Wire.available() waits for data ...