Dear guys,
I have an ESP8266 that is powered by an STM32 ( it provides 3.3v power supply). I load a sketch for creating a soft AP using the Arduino IDE.
I check with my phone if the Wifi AP is created and I find it, a few seconds later it disappears, and then it keeps coming on and off.
I used a scope to check if there are any sudden voltage drops, but none are detected, I used another ESP8266 module and still, it gives the same outcome.
The attached are the scope signal + a WiFi monitor app to show the signal strength ( Normally it should be continuous).
In case that The issue is with the code, here it is:
#include <ESP8266WiFi.h>
IPAddress local_IP(192,168,4,22);
IPAddress gateway(192,168,4,9);
IPAddress subnet(255,255,255,0);
void setup()
{
Serial.begin(115200);
WiFi.softAPConfig(local_IP, gateway, subnet);
WiFi.softAP("MT-SERVER_STM32", "AB000000", 6, false);
}
void loop() {}
Thank you guys!