initial wlan config with per-board unique ssid
All checks were successful
Build RPi Pico firmware image / Build-Firmware (push) Successful in 3m29s
Check code formatting / Check-C-Format (push) Successful in 7s
Check code formatting / Check-Python-Flake8 (push) Successful in 10s
Check code formatting / Check-Bash-Shellcheck (push) Successful in 5s
Run unit tests on host / Run-Unit-Tests (push) Successful in 9s

This commit is contained in:
2025-08-05 20:46:19 +02:00
parent 34f9a44cdb
commit 8a7eaf1d63

View File

@@ -5,6 +5,7 @@ import aiorepl
import asyncio
import machine
import micropython
import network
import os
import time
from machine import Pin
@@ -105,4 +106,12 @@ def run():
if __name__ == '__main__':
time.sleep(1)
network.hostname("TonberryPico")
wlan = network.WLAN(network.WLAN.IF_AP)
wlan.config(ssid=f"TonberryPicoAP_{machine.unique_id().hex()}", security=wlan.SEC_OPEN)
wlan.active(True)
run()