They're alternative ways to address the GPIO. Pin.cpu.GPIOx uses naming straight from the datasheet, while Pin.board.GPx uses the one seen on the underside of the Pico board. For example to light up the LED on the regular Pico (won't work on Pico W), you can use:oror
Code:
Pin(25, Pin.OUT, value=1) # Can be 'LED' instead of 25
Code:
Pin.cpu.GPIO25(1)
Code:
Pin.board.LED(1)
Statistics: Posted by horuable — Thu Jun 06, 2024 6:35 am