I’m trying to integrate an I2C LCD display into an Arduino Uno / RPI brewpi setup.
In following the instructions in the post here (http://forum.brewpi.com/discussion/1146/i2c-lcd-display-again) I’ve managed to relocate the OneWire to pin A0, but I’m still unable to display anything to the LCD.
I made one change to the github repository above to change the display address to 0x27 instead of 0x3f–I made this change in DisplayLcd.cpp as shown below:
uint8_t LcdDisplay::stateOnDisplay;
uint8_t LcdDisplay::flags;
#if defined(BREWPI_IIC)
// TODO: Change this. I2C address should be in config file.
LcdDriver LcdDisplay::lcd(0x27,20,4);
#else
LcdDriver LcdDisplay::lcd;
#endif
I’ve confirmed that the LCD works through a short hello world sketch; would anyone here be willing to help me out?