From 49a693b3ab569888fef3cdfd06a88a9d57f9f7dc Mon Sep 17 00:00:00 2001 From: Niko Date: Wed, 3 Jun 2026 19:36:35 +0000 Subject: [PATCH] Update README.md --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) 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") ```