Skip to content

Instantly share code, notes, and snippets.

@eydam-prototyping
Created February 14, 2021 22:03
Embed
What would you like to do?
import network
import time
wlan = network.WLAN(network.STA_IF)
wlan.active(True)
# Set DHCP host name to recognize the device in your router
wlan.config(dhcp_hostname="Heater")
# Replace your SSID and password
wlan.connect("<SSID>", "<password>")
while not wlan.isconnected():
time.sleep(1)
print("WiFi connected")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment