Tell me what you want, What you really, really want.

Moderator: Mmiscool

User avatar
By Luc Volders
#52426 Hi,

maybe this is an Arduino related problem so I also posted this question in the Ardiuno forum. However ESP Basic has the same issue.

I am talking about the wifi-scan program.

If I use the LUA version it shows all kinds of information like the name of the Access point, strength and for me the important one: the MAC ADRESS of the Access Point.

The Basic version does not do that. It shows the name but not the MAC ADRESS. Any chance of obtaining the mac-adress in Basic with the wifi-scan program........

Luc
User avatar
By Mmiscool
#52508 Latest build has new function wifi.bssid(x). See example below.


Code: Select alln = wifi.scan()
html "Number of network found = "
html n

for x = 1 to n
 html "<hr>"
 html wifi.ssid(x)
 html ","
 html wifi.rssi(x)
 html ","
 html wifi.bssid(x)
next x