Fixed compilation errors with some examples

This commit is contained in:
Federico Fissore
2013-10-21 13:16:51 +02:00
parent e0a4493868
commit 40fd0b306a

View File

@@ -112,9 +112,9 @@ void setup() {
lcd.begin(16, 2);
// Print a message to the lcd.
lcd.print("I ");
lcd.write(0);
lcd.write((byte) 0);
lcd.print(" Arduino! ");
lcd.write(1);
lcd.write((byte) 1);
}