cfg={}
cfg.ssid="myAccessPoint"
cfg.password="password"
wifi.setmode(wifi.STATIONAP)
wifi.ap.config(cfg)
print(wifi.ap.getip())
print(wifi.ap.getbroadcast())
print(wifi.ap.getmac())
When I run this, it creates an access point, which I can connect to, but it doesn't set the ssid or the password. The ssid is always: ESP_A05210.
Is this a lua firmware bug or am i doing it worng?