Hello.
I’m trying to provision a ESP8266 over wi-fi.
I uploaded an example sketch, ESP powers up, and when I connect to its AP, I lose data connection and Blynk app cannot connect to the server to verify device etc.
Am I too stupid for this?
ESP-01 over wi-fi
Latest Blynk IoT app on Android 9
Blynk server
Blynk Library 1.0.0 beta 3
// Fill-in information from your Blynk Template here
#define BLYNK_TEMPLATE_ID "TMPLXxxxxx"
#define BLYNK_DEVICE_NAME "xxx"
#define BLYNK_FIRMWARE_VERSION "0.1.0"
#define BLYNK_PRINT Serial
//#define BLYNK_DEBUG
#define APP_DEBUG
// Uncomment your board, or configure a custom board in Settings.h
//#define USE_SPARKFUN_BLYNK_BOARD
//#define USE_NODE_MCU_BOARD
//#define USE_WITTY_CLOUD_BOARD
#include "BlynkEdgent.h"
void setup()
{
Serial.begin(115200);
delay(100);
BlynkEdgent.begin();
}
void loop() {
BlynkEdgent.run();
}