leorobertreid
New member
I'm trying to program a Teensy 4.1
.
I've tried to upload a test program:
A simple blink sketch.The problem is that, when I try to upload it (I've tried arduino with Teensyduino and platformio), the board is not detected and it asks to click on the program button. I do that, but it still is not recognized.
Does anyone know what I'm doing wrong? Do I just have a bad board. I got it from aliexpress, so that might me why.
On device manager (on windows 11), I can see Teensyduino RawHID appear and disappear when I plug it in and out, and when I click on the program button on the Teensy 4.1, it appears as unknown.
My main worry is that the board is faulty, but I'm praying that I'm doing something wrong.
Thanks for the help
.
I've tried to upload a test program:
C++:
#include <Arduino.h>
void setup() {
pinMode(LED_BUILTIN, OUTPUT);
Serial.begin(9600);
}
void loop() {
digitalWrite(LED_BUILTIN, HIGH);
Serial.println("LED is ON"); delay(1000);
digitalWrite(LED_BUILTIN, LOW);
Serial.println("LED is OFF");
delay(1000);
}
A simple blink sketch.The problem is that, when I try to upload it (I've tried arduino with Teensyduino and platformio), the board is not detected and it asks to click on the program button. I do that, but it still is not recognized.
Does anyone know what I'm doing wrong? Do I just have a bad board. I got it from aliexpress, so that might me why.
On device manager (on windows 11), I can see Teensyduino RawHID appear and disappear when I plug it in and out, and when I click on the program button on the Teensy 4.1, it appears as unknown.
My main worry is that the board is faulty, but I'm praying that I'm doing something wrong.
Thanks for the help