47 lines
1.1 KiB
Python
47 lines
1.1 KiB
Python
import network
|
|
from machine import Pin
|
|
from time import sleep
|
|
import ubinascii
|
|
from settings import Settings
|
|
|
|
def connect(ssid, password, ip, gateway):
|
|
if ssid is None or password is None:
|
|
print("Missing ssid or password")
|
|
return None
|
|
try:
|
|
sta_if = network.WLAN(network.STA_IF)
|
|
if ip is not None and gateway is not None:
|
|
sta_if.ifconfig((ip, '255.255.255.0', gateway, '1.1.1.1'))
|
|
if not sta_if.isconnected():
|
|
print('connecting to network...')
|
|
sta_if.active(True)
|
|
sta_if.connect(ssid, password)
|
|
sleep(0.1)
|
|
if sta_if.isconnected():
|
|
return sta_if.ifconfig()
|
|
return None
|
|
return sta_if.ifconfig()
|
|
except Exception as e:
|
|
print(f"Failed to connect to wifi {e}")
|
|
return None
|
|
|
|
|
|
def ap(password):
|
|
ap_if = network.WLAN(network.AP_IF)
|
|
ap_mac = ap_if.config('mac')
|
|
ssid = f"led-{ubinascii.hexlify(ap_mac).decode()}"
|
|
print(ssid)
|
|
ap_if.active(True)
|
|
ap_if.config(essid=ssid, password="qwerty1234")
|
|
ap_if.active(False)
|
|
ap_if.active(True)
|
|
print(ap_if.ifconfig())
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|