Page 1 of 1

wifi.scan and wifi.networks(a$) not working on ESP-C3

Posted: Tue Nov 28, 2023 3:53 pm
by efalken
The commands
wifi.scan and wifi.networks(a$)
don't work or show up with any results on the new ESP32 C3 -
FW: Annex32-C3 CAN USB 1.51.2 qio LFS
regards
Erhard

Re: wifi.scan and wifi.networks(a$) not working on ESP-C3

Posted: Tue Nov 28, 2023 4:04 pm
by cicciocb
Something changed in the SDK.
Try this code

Code: [Local Link Removed for Guests]

while 1 = 1
  wlog  time$;"-------------------------"
  WIFI.SCAN
  While WIFI.NETWORKS(A$) < 0
  Wend
  wlog a$, chr$(13)
  pause 1000
wend

Re: wifi.scan and wifi.networks(a$) not working on ESP-C3

Posted: Tue Nov 28, 2023 4:28 pm
by efalken
this did the trick.
THANX :D