Hi, I've just bought a teensy for the first time, after initial great success, am having trouble with the serial port.
It worked OK for an hr or two, i.e. I could use the serial monitor in the Arduino/Teensduino IDE to see my Serial.print() messages, but now whatever I do it doesn't work!
What I've tried (several times!)
I've read the troubleshooting pages (http://www.pjrc.com/teensy/troubleshoot.html) but don't quite follow if I'm doing something wrong. The "USB type" in the IDE is set to "serial".
I've also tried different USB ports, and uninstalling the serial driver in Windows "device manager", then reinstalling it when I plug the teensy USB back in again.
I've run out of ideas
Is my Teensy faulty, or is there something else wrong?
It worked OK for an hr or two, i.e. I could use the serial monitor in the Arduino/Teensduino IDE to see my Serial.print() messages, but now whatever I do it doesn't work!
What I've tried (several times!)
- Unplug everything, power down laptop, remove battery.
- Plug power and batt back in, boot up - Windows 7 64bit
- Load Teensdyuino
- Plug in teensy
- Open Serial monitor
- Get error: "Serial port 'COM6' in use"
- Then if I try again, get error: Serial port 'COM6' not found
Code:
void setup() {
Serial.begin(9600);
}
void loop() {
Serial.println("Hello");
delay(1000);
}
I've read the troubleshooting pages (http://www.pjrc.com/teensy/troubleshoot.html) but don't quite follow if I'm doing something wrong. The "USB type" in the IDE is set to "serial".
I've also tried different USB ports, and uninstalling the serial driver in Windows "device manager", then reinstalling it when I plug the teensy USB back in again.
I've run out of ideas