
Following the Getting Started guide I'm struggling to get the onboard LED to light up and am not sure if I have a defective unit or am doing something daft (equally likely!) So far I've flashed the Pico W specific MicroPython firmware, and am able to connect to the REPL on the device via serial over USB. Next I followed the instructions and ran
Code: Select all
from machine import Pin
led = Pin(25, Pin.OUT)
led.value(1)
Code: Select all
led.value() # returns 1