I am new to Arduinos and up to this point I have just uploaded software to my M2 and connected to it Via SavvyCan.
Using Arduino IDE 1.8.5 I can upload the sketches fine.
Blinky works fine…
When I try to open up the serial monitor and actually see what is going on I don’t see anything. From what I understand it should just start printing but my monitor has nothing in it…
I have tried using this Sketch, uploading it and setting the monitor to 9600 baud. Should print out “Hello World” But I am getting a blank screen.
Have tried this with both of my M2 units and both my desktop and laptop.
I am guessing I am missing something simple…
Here is the sketch I am running:
void setup() // run once, when the sketch starts
{
Serial.begin(9600); // set up Serial library at 9600 bps
}
void loop() // run over and over again
{
Serial.println("Hello world!"); // prints hello with ending line break
delay(1000);
}