Oggie62 wrote: ↑Thu Jul 04, 2024 10:45 am
I have one of the red ones. I followed the instructions - switched to 'prog" mode and uploaded.....at one point the blue led flashed and then "hard resetting via RTS" and then.....nothing. I tried unplug/replug usb, same but switching to UART....nothing. In this application it is a relay switched using wifi, so it should show me IP address of module so I can switch it. I checked if the module connected to wifi but, yet again nothing
People here are willing to help newbies, but you either have to supply information or be willing to try suggestions offered. Your problem could be any number of things, and you have to use baby steps to resolve what your issue is. What were the results of the suggestions I made above. If you didn't understand them, say so. We don't know your skill level. There are many levels of newbness!
Upload the following Sketch:
Code: Select all
#define LED 2
void setup()
{
Serial.begin(115200);
delay(1000);
Serial.println("\n\nStarted");
pinMode(LED, OUTPUT);
}
void loop()
{
digitalWrite(LED, LOW);
delay(1000);
digitalWrite(LED, HIGH);
delay(2000);
Serial.println("Blinked");
}
You should see the LED blink and you should see output in the Serial Monitor. If you do...
(1) ...not see the LED blinking (every three seconds), try changing the LED value (Blue Circle) from 2 to 0. Some ESP's use a different pin.
(2) ...not see the serial print messages (Lime Green Circles), make sure you have the same same baud rate in the program as set on the Serial Monitor (Red Circles).
If you get both of these working, it means your hardware is all good... THEN try your WIFI program. If it still doesn't work, you'll have to provide that program for us to figure out your problem.
Good luck,
Inq
- Capture.PNG (59.76 KiB) Viewed 5329 times