This LCM1602 IIC V1
Serial 2 X 16 LCD Display for Arduino Used to work great. With Arduino IDE 1.8 something from Microsoft store, on a new Win 10 computer, this "Hello, world!" sketch would only print “H”.
//DFRobot.com
//Compatible with the Arduino IDE 1.0
//Library version:1.1
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27,16,2); // address 0x27 on this one
void setup()
{
lcd.init(); // initialize the lcd
// Print a message to the LCD.
lcd.backlight();
lcd.print("Hello, world!");
}
void loop()
{
}
But it would do lcd.write(Serial.read());
I went back to Arduino IDE 1.6.5 and it works fine.
I don’t need a solution. This is just a bug report.