Relative Content

Tag Archive for wifimicropythonraspberry-pi-pico

Why does Raspberry Pi Pico W make AP with default configuration?

import socket import network ssid = ‘PICOlo amore’ password = ‘12345678’ led = Pin(15, Pin.OUT) ap = network.WLAN(network.AP_IF) ap.active(False) ap.active(True) ap.config(essid=ssid, password=password) while ap.active == False: pass print(‘Access point active’) print(ap.ifconfig()) I wrote this simple code to test Access Point on my Raspberry Pi Pico W, but it only works when I run the script […]