Dual LCD displays
-
I had the idea from wiki.onion.io/Tutorials/Python-I2C-LCD-Display and I put in 2 I2C LCDs.
Rewrite on the next line looks like this from the first LCDlcd1 = lcddriver.lcd(0x3E) lcd1.backlightOn() lcd1.lcd_display_string("David made this", 1) lcd1.lcd_display_string("too. is it cool?", 2) sleep(1) lcd1.backlightOff() sleep(1) lcd1.backlightOn()
where lcd1 is the second LCD.
I let you play with it. I am learning how to do a python script. Beside more to come.
-