Quantcast
Channel: Raspberry Pi Forums
Viewing all articles
Browse latest Browse all 4788

MicroPython • Re: Functions Pin.board and Pin.cpu

$
0
0
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:

Code:

Pin(25, Pin.OUT, value=1)  # Can be 'LED' instead of 25
or

Code:

Pin.cpu.GPIO25(1)
or

Code:

Pin.board.LED(1)

Statistics: Posted by horuable — Thu Jun 06, 2024 6:35 am



Viewing all articles
Browse latest Browse all 4788

Trending Articles