Serial Monitor not showing any updates

Status
Not open for further replies.

missaghi

New member
I'm running on windows with the update 6 from the kickstarter page.

I'm able to run sketches and it auto-reboots but I need a way to debug and the serial monitor is always blank. Testing with this sketch:

void setup() {
Serial.begin(38400);
}

void loop()
{
Serial.println("Hello World");
delay(1000);
}

monitor.pngreboot.png
 
Under the "tools" menu in the IDE, it allows you to select the serial port. Sometimes your comport might get un-checked cause no serial monitor output.
 
Try what pixelk suggests (9600 baud) and also see if there are other com ports available. I had a similar issue that was resolved by switching to COM4, even though the program uploaded and the Teensy rebooted on COM3 just fine, somehow...
 
Status
Not open for further replies.
Back
Top