indraastra
Member
Using the code below, I'm not seeing any text appear in the serial monitor (also tried TeraTerm); however, the LED is blinking just fine:
Details:
The baud rate is set correctly in the monitor. I've also confirmed that the program running is not the default LED blinker by changing the delay and seeing an obvious response. I haven't seen anyone else complain about this, so I'm guessing it's something to do with my setup...
Code:
void setup() {
Serial.begin(9600);
pinMode(13, OUTPUT);
}
void loop() {
Serial.println("led on");
digitalWrite(13, 1);
delay(1000);
Serial.println("led off");
digitalWrite(13, 0);
delay(1000);
}
Details:
- Teensy Software Beta6
- Teensy Loader 1.07
- Win7 64-bit
The baud rate is set correctly in the monitor. I've also confirmed that the program running is not the default LED blinker by changing the delay and seeing an obvious response. I haven't seen anyone else complain about this, so I'm guessing it's something to do with my setup...