- Fri Apr 03, 2020 5:09 pm
#86332
Hi there.
Interesting. It doesn't look like I can even flash a simple sketch. I tried this sketch. It flashed with no errors, but the blue light doesn't flash.
Code: Select all#define LED 2 //Define blinking LED pin
void setup() {
pinMode(LED, OUTPUT); // Initialize the LED pin as an output
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(LED, LOW); // Turn the LED on (Note that LOW is the voltage level)
delay(1000); // Wait for a second
digitalWrite(LED, HIGH); // Turn the LED off by making the voltage HIGH
delay(1000); // Wait for two seconds
}
I'm afraid of trying this on another -01 module. Every time I flash something, it's broken from that point on. I've seen this problem on 2 out of 6 modules. Could they be fried?
Note: I have been flashing with a 3.3V FTDI board...
Thanks for the help.