Chat freely about anything...

User avatar
By torntrousers
#20242 Hi Sesupply, its unlikely you've corrupted anything to permanently break the ESP-07. It does work using an Uno as the FTDI adapter, I've done that and it works fine, some more info on doing that is here. AFAIK the ESP Rx pin is 5v tolerant so you don't need a level shifter and can connect it directly to the Uno (it works for me anyway on several ESPs).

You say "I managed to upload a blank sketch...Now this module does nothing!!" - what are you expecting to happen, a blank sketch does nothing, right? Try a sketch that does something simple:
Code: Select allvoid setup() {
  Serial.begin(115200);
}
void loop() {
  Serial.println("Hello");
  delay(1000);
}

Use the Arduino IDE with ESP8266 support that you said you've got (from following the instructions here?).

Hook up the ESP using the Uno for FTDI, and with ESP GPIO-0 connected to GND, GPIO15 connected to GND, CH_PD connected to 3.3V.

Click upload in the IDE and you should see in the IDE console the upload happen and it say it completed successfully.

Open the IDE Serial monitor, set speed to 115200 baud, and you should see the Hello's every second.

If that doesn't work tell us exactly which steps did/didn't work.
User avatar
By cal
#20243 Moin,

@torntrousers

it's nice to know that an arduino can be used this way. I must have missed that when I started hacking the esp8266.

I understand that the UNO MCU is "disabled" and the hardware serial of the UNO is then patched through?

Cal