As the title says... Chat on...

User avatar
By realchel
#75153 Hi.
Sorry for my english
It's not me, it's Google :)

I'm working with the enduser_setup module

I use an example from the documentation

Code: Select allwifi.setmode(wifi.STATIONAP)
wifi.ap.config({ssid="MyPersonalSSID", auth=wifi.OPEN})
enduser_setup.manual(true)
enduser_setup.start(
  function()
    print("Connected to wifi as:" .. wifi.sta.getip())
  end,
  function(err, str)
    print("enduser_setup: Err #" .. err .. ": " .. str)
  end
);


When the ESP board (I'm using LolinV3) reboots.
MyPersonalSSID network appears for a few seconds
But then there is a reset on SetupGadget_XXXXXX

What am I doing wrong?