- https://www.raspberrypi.com/documentation/microcontrollers/raspberry-pi-pico.html
- https://www.heise.de/tests/Im-Test-Was-taugt-der-neue-Mikrocontroller-von-Raspberry-Pi-6287998.html?seite=all-Defaults
- https://shop.pimoroni.com/products/breadboard-for-pico?variant=39345435115603
- https://github.com/RetiredWizard/PyDOS/ (PyDOS, PyBASIC, edit... All the functionality of the 1981 IBM PC on a PI Pico?)
- https://www.youtube.com/watch?v=sWy5_B3LL8c (PyDOS now runs on CircuitPython and the Arduino Nano RP2040 Connect )
- https://www.cytron.io/c-development-tools/c-maker-series/p-maker-pi-pico-base
- https://github.com/CytronTechnologies/MAKER-PI-PICO
- https://draeger-it.blog/maker-pi-pico-von-cytron/
- https://geoffg.net/picomite.html
- https://github.com/UKTailwind/PicoMite
- https://youtu.be/8jjL8g5U61c?t=1405
- https://www.youtube.com/watch?v=Cxmjy1nz6MM
- https://mmbasic.com/
- https://projects.raspberrypi.org/en/projects/getting-started-with-the-pico/0
- https://www.youtube.com/watch?v=JCk9QaCH5QU (Intro to Raspberry Pi Pico and RP2040 - MicroPython Part 1: Blink | Digi-Key Electronics )
- https://www.youtube.com/watch?v=Zy64kZEM_bg (Raspberry Pi Pico - Control the (I/O) World)
- https://make.playpiper.com/
- https://thonny.org/
- https://wokwi.com/arduino/new?template=pi-pico
from machine import Pin
from utime import sleep
print("Hello, Pi Pico!")
led = Pin(15, Pin.OUT)
while True:
led.toggle()
sleep(0.5)
from time import sleep
from machine import Pin
from machine import PWM
pwm = PWM(Pin(15))
pwm.freq(50)
#Function to set an angle
#The position is expected as a parameter
def setServoCycle (position):
pwm.duty_u16(position)
sleep(0.01)
while True:
for pos in range(800,8000,50):
setServoCycle(pos)
for pos in range(800,800,-50):
setServoCycle(pos)