Skip to content

Instantly share code, notes, and snippets.

@eydam-prototyping
Created February 14, 2021 22:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eydam-prototyping/f53b7ac7d813d3b087277177225f59be to your computer and use it in GitHub Desktop.
Save eydam-prototyping/f53b7ac7d813d3b087277177225f59be to your computer and use it in GitHub Desktop.
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