Difference between revisions of "Raspberry Pi Pico"

From Sketching with Hardware at LMU Wiki
Jump to navigation Jump to search
Line 1: Line 1:
 
[[File:Pipico01.PNG|300px]]
 
[[File:Pipico01.PNG|300px]]
  
== Links ==
+
= Links =
  
 
Here are some links for the Raspberry Pi Pico board:
 
Here are some links for the Raspberry Pi Pico board:
Line 16: Line 16:
 
* https://datasheets.raspberrypi.org/pico/raspberry-pi-pico-python-sdk.pdf
 
* https://datasheets.raspberrypi.org/pico/raspberry-pi-pico-python-sdk.pdf
  
== Related Video ==
+
= Related Video =
  
 
[[File:Pipico02.PNG|800px|link=https://www.sketching-with-hardware.org/video/pipico01/pipico01_player.html]]
 
[[File:Pipico02.PNG|800px|link=https://www.sketching-with-hardware.org/video/pipico01/pipico01_player.html]]
 +
 +
 +
= Code Example =
 +
 +
= Control the internal LED with MicroPython =
 +
The internal LED is connected to Pin 25.
 +
 +
<syntaxhighlight lang="python" line='line'>
 +
from machine import Pin
 +
# the internal LED is connected to Pin 25, we use it as output
 +
myLED = Pin(25, Pin.OUT)
 +
# this switches the LED on
 +
myLED.on()
 +
# this switches the LED off
 +
myLED.off()
 +
</syntaxhighlight>

Revision as of 00:42, 22 February 2021

Pipico01.PNG

Links

Here are some links for the Raspberry Pi Pico board:

The starting page:

Board pinout

MicroPython on the Raspberry Pi Pico

Related Video

Pipico02.PNG


Code Example

Control the internal LED with MicroPython

The internal LED is connected to Pin 25.

1 from machine import Pin
2 # the internal LED is connected to Pin 25, we use it as output 
3 myLED = Pin(25, Pin.OUT)
4 # this switches the LED on
5 myLED.on()
6 # this switches the LED off
7 myLED.off()