For ESP-12F to start, the
CH_PD
,GPIO4
,GPIO0
,GPIO2
pins must be pulled up and theGPIO15
must be pulled down. As pull up/down we use 10kOhm resistors that are connected with3.3V
andGND
, respectively. Only with this configuration our chip properly boots up once powered.
So I need to do something like this:
Can the enable pin on esp12f be accessed through a software pin? or do I need to physically solder 10kΩ between it and Vcc?
// pinMode(???, INPUT_PULLUP); // CH_PD (EN)
pinMode(4, INPUT_PULLUP); // GPIO4
pinMode(0, INPUT_PULLUP); // GPIO0
pinMode(2, INPUT_PULLUP); // GPIO2
pinMode(15, INPUT_PULLDOWN); // GPIO15