diff --git a/README.md b/README.md index 56c9926..6af41bc 100644 --- a/README.md +++ b/README.md @@ -32,6 +32,13 @@ Node UID is SHA-256 hashed before sending — raw UID never reaches the server. ## Install via mip (on-board, requires WiFi) ```python +#Pico W / Pico 2 W +import network, utime +wlan = network.WLAN(network.STA_IF) +wlan.active(True) +wlan.connect('YOUR_SSD', 'YOUR_WIFI_PASSWORD') +while not wlan.isconnected(): utime.sleep(1) + import mip mip.install("https://git.aeonianengineering.net/wide/identity-micropython/raw/branch/main/package.json") ```