serial tutorial not working

Status
Not open for further replies.

albireo13

Member
Just go ta Teensy 2.0 and testing it on my WIN7 laptop. Using Teensyduino, I connected it up and have successfully run the LED blink tutorial so the module is functional and USB interface is working.

However, i can't seem to get the serial tutorial to work. I get a COM1 screen, fo rmy serial monitor but, no displayed text.
I've set the COM1 baud rate to 38400 as used in tutorial as well.

Am I missing something?
 
Ooops .. here is the code.

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

void loop()                     
{
  Serial.println("Hello World");
  delay(1000);
}
 
Nevermind. For some reason the USB serial driver wasn't loaded.
I reran the Teensyduino install and now it's working!
 
Status
Not open for further replies.
Back
Top