Hello everyone, im using a tinyduino board, with a tiny screen attached and battery etc. everything works fine, the board can run games or programs i load onto it.
however, when i print anything to the serial monitor i get garbage back, like the attached photo. if i print to the display its fine.
void setup()
{
Serial.begin(9600);
// While the serial stream is not open, do nothing.
// Wait until the serial monitor is started.
// This is only for the Leonarde and the Micro.
while (!Serial) ;
Serial.println( "Hello !");
}
void loop()
{
Serial.println( millis() );
delay(500);
}
i tried running simple codes like this i found online but all of them gave me garbage. If anyone can help that would be great!