Problem: Standalone LCD not possible
Hello! I may have discovered a serious defect with the default LiquidCrystal.h included with Arduino IDE 1.5.2. Unlike the AVR boards, the DUE can't use the LCD when it is not connected to a PC. What I mean to say is, it malfunctions when it does not have PC communications.
#include <LiquidCrystal.h>
LiquidCrystal lcd(7,8,9,10,11,12);
void setup() {
lcd.begin(16, 2);
lcd.print("hello, world!");
}void loop() {
lcd.setCursor(0, 1);
lcd.print(millis()/1000);
}
The undesirable effect is... A working LCD with useless data. Possible adjectives: garbled, scrambled.
Question: Is there a way to get the LCD to work on the DUE without have a computer connection?