Wipy 1 using WEP?

Questions and discussion about The WiPy 1.0 board and CC3200 boards.
Target audience: Users with a WiPy 1.0 or CC3200 board.
Post Reply
KMcLoud
Posts: 7
Joined: Sun Oct 30, 2016 1:06 pm

Wipy 1 using WEP?

Post by KMcLoud » Sun Apr 23, 2017 2:13 pm

trying to connect a Wipy 1 to a WEP secured router, the following code appears to follow the docs, but does not work. (works fine with WPA)

any idea what's going on?

Code: Select all

from network Import WLAN
import time

wlan=WLAN()

wlan.mode(WLAN.STA)

while not wlan.isconnected():
    wlan.connect('SSID HERE',auth=(WLAN.WEP, '26FB1238F8'),timeout=5000)
    time.sleep_ms(10000)
where "26F..." is the WEP key

(yes, I know WEP is obsolete, trying to make a project run on a network where I don't control the router)

Post Reply