I uploaded the udpserver example and it seemed to work. Then I wanted to make some changes and I uploaded again and ever since I have not been able to get any sketch to work.
This is what I have:
- Laptop powersupply with LM2596 Voltage Regulator to provide 3.3v 2A
- Esp-01 (v90 – the one with the blue led to indicate serial communication)
- Silicon Labs CP210x (forgot which one)
My connections (Powersupply = PS, Esp-01 = ESP, CP210x = CP)
ESP TX <-> CP RX
ESP RX <-> CP RX
ESP GND <-> CP GND – PS GND
ESP CS <-> PS VCC
ESP RST <-> float
ESP VCC <-> PS VCC
ESP GIO0 <-> PS GND when flashing, float when running
ESP GIO2 <-> float
My test source:
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
//while (!Serial) {
// ; // wait for serial port to connect. Needed for Leonardo only
//}
}
void loop() {
// put your main code here, to run repeatedly:
Serial.print("[test]");
}
I have tried 3 different modules
I am on windows 8.1
When i connect power I only get the bootloader garbage on the serial and then nothing. The blue led does not blink (not sure if it is supposed to do on TX or jut on RX)
Any ideas?