From 40fd0b306ace8da737914efdefc58ba2a8328b53 Mon Sep 17 00:00:00 2001 From: Federico Fissore Date: Mon, 21 Oct 2013 13:16:51 +0200 Subject: [PATCH] Fixed compilation errors with some examples --- examples/CustomCharacter/CustomCharacter.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/CustomCharacter/CustomCharacter.ino b/examples/CustomCharacter/CustomCharacter.ino index 3a96488..233cad1 100644 --- a/examples/CustomCharacter/CustomCharacter.ino +++ b/examples/CustomCharacter/CustomCharacter.ino @@ -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); }