Hey folks, running this code on a nano.
My serial monitor outputs garbage (usually a bunch of backwards ?????) at the set baud rate but if i increase it on the monitor by one level, it works.
thoughts???
void setup() // run once, when the sketch starts
{
Serial.begin(19200); // set up Serial library at 9600 bps
Serial.println("Hello world!"); // prints hello with ending line break
}
void loop() // run over and over again
{
Serial.println("Hello world!"); // prints hello with ending line break // do nothing!
}