Electrical – ESP-12F module “correct” wiring for usage as modem

esp8266uart

I have wired the ESP-12F module as shown in the diagram below.
I can not get reply when sending "AT" at 115,200 Baud 8bit, 1bit stop, no parity.

  1. Is this the correct wiring?
  2. Is there a special start-up sequence that might prevent the module from working properly if not followed?

enter image description here

Best Answer

As stated in the comments...

GPIO0 should not be tied to GND, because in that case the module will start up in boot mode. Leave it to float or pull it up to 3.3 V. The correct command AT\r\n, I do not know if you use this format. – Bence Kaulics

Related Topic