-->
Page 1 of 1

Wifi Scan adaption

PostPosted: Sun Aug 07, 2016 12:56 pm
by Luc Volders
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

Re: Wifi Scan adaption

PostPosted: Mon Aug 08, 2016 5:06 pm
by Mmiscool
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

Re: Wifi Scan adaption

PostPosted: Mon Aug 08, 2016 9:49 pm
by martinayotte
You've seen probably my post viewtopic.php?f=8&t=11197&p=52503#p52503 ... :ugeek:

Re: Wifi Scan adaption

PostPosted: Thu Aug 11, 2016 4:14 pm
by Luc Volders
Guys,

You are great !!!
just what I needed.

Works like a charm.

Thanks, many thanks.

Luc