I want to blink the text "Fan" - only when the fan is on. Is this possible? I don't understand how to do this from the LiquidCrystal Library, only the cursor can blink I think.
Display:
Humidity=15.20 Temp=72.50 >Fan<
I want only "Fan" to blink when it is on
Thanks!
your programs has to rewrite it.. fast.
Not sure I understand
I don't understand how to do this from the LiquidCrystal Library . . .
When you want the message to appear:
lcd.setCursor(14,1); lcd.print(">fan<");
When you want the message to go blank:
lcd.setCursor(14,1); lcd.print(" ");
Don
Oh geez, that is way too easy. I'll try it.