Page 1 of 1

esp8266 wifi.getconfig not giving correct mac address

Posted: 23 April 2017, 11:20 AM
by JimG
I'm not getting the correct mac address, am I doing this correctly?

Code: Select all

dim curssid as string,curpw as string,b(6) as byte
call wifi.getconfig(@curssid,@curpw,@b)
debug.print curssid
debug.print curpw
debug.print cstrhex(b(0));":";cstrhex(b(1));":";cstrhex(b(2));":";cstrhex(b(3));":";cstrhex(b(4));":";cstrhex(b(5))
I'm getting 00:00:00:00:00:00 for the mac address, the ssid and pw print correctly.