Hi Guys
Wondering if anyone has any idea what could be causing this problem.
I have a Character LCD Screen ( 16x2 ) that is running off a maple mini.
It works fine, for an unspecified ammount of time. ( sometimes 10 mins, sometimes 2 mins, and sometimes an hour )
When the error occurs, all the characters go crazy. They display some letters, some numbers, some random shapes. Some ascii symbols etc.
If i press the reset button, the LCD returns working perfectly fine ( until the next glitch )
I have tried this with a few different sketches, including the one below
#include <LiquidCrystal.h>
LiquidCrystal lcd(7, 8, 9, 10, 11, 12);
void setup() {
lcd.begin(16, 2);
lcd.print("Hello, Mars!");
}
void loop() {
lcd.setCursor(0, 1);
lcd.print(millis()/1000);
}
Notes:
The LCD and this code work fine running off an Arduino
I have tried this code on 2 different Maple Minis - both produce the same error.
I really want to be able to use the maple mini for my project, but at the moment, this is a bit of a deal breaker :(
Any help would be greatly appreciated