Search found 7 matches

by victorclaessen
Mon May 09, 2016 11:27 pm
Forum: ESP8266 boards
Topic: cannot get mac address?
Replies: 2
Views: 16739

Re: cannot get mac address?

Right, check, thanks! For the next person to come along: to format the MAC address in a way you may recognise, try: import network import ubinascii mac = ubinascii.hexlify(network.WLAN().config('mac'),':').decode() print mac output will look like (fictional value): 01:23:45:67:89:ab (edit: made code...
by victorclaessen
Mon May 09, 2016 10:06 pm
Forum: ESP8266 boards
Topic: cannot get mac address?
Replies: 2
Views: 16739

cannot get mac address?

Hi, the following code does not work on my board: >>> import network >>> wlan=network.WLAN() >>> wlan.mac() # get the interface's MAC adddress Traceback (most recent call last): File "<stdin">, line 1, in <module> AttributeError: 'WLAN' object has no attribute 'mac' >>> dir(wlan) ['active', 'connect...
by victorclaessen
Sun May 08, 2016 10:13 pm
Forum: ESP8266 boards
Topic: onewire DS18B20 issue
Replies: 3
Views: 5155

Re: onewire DS18B20 issue

I built the firmware from source code (latest commit 65402ab1ec05fd552ceae63e2dcac69095ab1338) and now the error is gone. It appears to have been fixed in commit https://github.com/micropython/micropython/commit/df2b1a4758500d3ac538b30fad2e5a48126ea4a0 . I am not allowed to attach .bin files, otherw...
by victorclaessen
Wed May 04, 2016 10:47 pm
Forum: ESP8266 boards
Topic: WPA Enterprise
Replies: 2
Views: 3416

Re: WPA Enterprise

While doing a little more research, I stumpled upon the following commit in a fork, which has an interesting commit message. However, I am unable to interpret if this represents a working implementation or not. https://github.com/noahwilliamsson/micropython/commit/7690423d6899a3fca14fab3d3d70afa0b48...
by victorclaessen
Wed May 04, 2016 10:02 pm
Forum: WiPy and CC3200 boards
Topic: Enterprise authentication, e.g. 802.1x EAP
Replies: 11
Views: 11383

Re: Enterprise authentication, e.g. 802.1x EAP

I would also be very interested in having WPA Enterprise support. A lot of educational institutions use it (the previously mentioned eduroam network), as does ours.
by victorclaessen
Wed May 04, 2016 9:57 pm
Forum: ESP8266 boards
Topic: onewire DS18B20 issue
Replies: 3
Views: 5155

Re: onewire DS18B20 issue

My board is a Witty Cloud board containing an ESP-12. I am having the exact same issue with the same output.
by victorclaessen
Wed May 04, 2016 2:20 pm
Forum: ESP8266 boards
Topic: WPA Enterprise
Replies: 2
Views: 3416

WPA Enterprise

Hi,

I am wondering if it would be technically possible to add support for wifi networks that use WPA Enterprise authentication?

Best regards,

Victor