I am having trouble with my new Teensy 4.0.
Here is my setup:
Can someone help me diagnose what is going on here?
I feel like it might have something to do with the issue that is discussed in this thread.
https://forum.pjrc.com/index.php?threads/teensy-4-0-doesnt-power-on-with-less-than-4-10v.70636/
Thank you in advance!!
Here is my setup:
- I have the Teensy soldered to the Adafruit teensy feather adapter. This one
- I have the Adafruit 128x64 OLED feather wing stacked on top. This one
- These components were purchased last week from Adafruit.
- With the OLED connected the Teensy will only boot when freshly programmed or restarted via the Teensy Loader app.
- It will NOT boot in this config when by an external usb "wall brick".
- instead of booting the red bootloader light remains dimly lit.
- When auto is selected in the teensy loader it will automatically reprogram when the OLED connected, without the OLED connected the teensy boots without triggering a reprogram.
- It will boot normally every time without the OLED connected.
C++:
const int ledPin = 13;
void setup() {
pinMode(ledPin, OUTPUT);
}
void loop() {
digitalWrite(ledPin, HIGH); // set the LED on
delay(1000); // wait for a second
digitalWrite(ledPin, LOW); // set the LED off
delay(1000); // wait for a second
}
Can someone help me diagnose what is going on here?
I feel like it might have something to do with the issue that is discussed in this thread.
https://forum.pjrc.com/index.php?threads/teensy-4-0-doesnt-power-on-with-less-than-4-10v.70636/
Thank you in advance!!