Function for writing to multiple I2C LCDs...
hello arduino gurus , noobs... i have been trying solve problem, unfortunately, while now. have function write appropriate i2c lcd based on functions "string" input parameter. i'm having trouble determining how code correctly. here code: code: [select] #include <wire.h> // needed i2c comm #include <liquidcrystal_i2c.h> // lcd functions library liquidcrystal_i2c left_lcd(0x27, 2, 1, 0, 4, 5, 6, 7, 3, positive); liquidcrystal_i2c center_lcd(0x26, 2, 1, 0, 4, 5, 6, 7, 3, positive); liquidcrystal_i2c right_lcd(0x25, 2, 1, 0, 4, 5, 6, 7, 3, positive); void setup(){ left_lcd.begin(20,4); //// initialize 20x4 i2c lcd display center_lcd.begin(20,4); //// initialize 20x4 i2c lcd display right_lcd.begin(20,4); } byte count = 0; ...