Hi, guys,
i have a little problem with my new ESP-12
when i’m using the ESP8266-01,
i flash the firmware using AT22SDK,
and write this following sketch
#define BLYNK_PRINT Serial
#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>
// You should get Auth Token in the Blynk App.
// Go to the Project Settings (nut icon).
char auth[] = "***";
// Your WiFi credentials.
// Set password to "" for open networks.
char ssid[] = "***";
char pass[] = "***";
void setup()
{
// Debug console
Serial.begin(9600);
Blynk.begin(auth, ssid, pass);
// You can also specify server:
//Blynk.begin(auth, ssid, pass, "blynk-cloud.com", 8442);
//Blynk.begin(auth, ssid, pass, IPAddress(192,168,1,100), 8442);
}
void loop()
{
Blynk.run();
// You can inject your own code or combine it with other sketches.
// Check other examples on how to communicate with Blynk. Remember
// to avoid delay() function!
}
Everything went well,
My esp-01 connected directly to my home Wifi and Blynk,
The problem happened when my esp-01 got burned, and i buy this new esp-12.
Everything looks good at first,
I flash it with the same AT22SDK, the ATcommand’s worked, I can send AT+CWMODE, Change CWMODE, Connect to AP, AT+CWLAP, AT+CWJAP, set esp-12 as AP, it’s all good,
But when i try to write it with the same Sketch, and reboot, the serial monitor stuck at
“[70]connecting to (myhomenetwork)”
, and no activity LED on my ESP-12,
it’s like it freezing when trying to connect to my home network,
What did i do wrong ? the wiring is
(ESP12 --- FTDI)
vcc --- 3,3v
grnd --- grnd
GPIO15 --- grnd
Rx ---- Tx
Tx --- Rx
CH_PD ---- 3,3v
Has someone ever use this esp12 ?
Thx before.