1. Open Source
2. Modules are cheaper
1. Fork of Micro Python
2. Owned by Ada Fruit
3. Compatible with Only Ada Fruit Modules
4. Expensive
5. No ConCurrency and No State Sharing
- Download the below files Micro Python / Circuit Python
- Micro Python (Recommended) - MicroPython
- Circuit Python UF2 file from - https://circuitpython.org/board/raspberry_pi_pico/
- Hold Raspberry Pi Pico on-board BOOTSEL button (Button on the board)
- Plug it into USB (or pulling down the RUN/Reset pin to ground)
- It will appear as a USB disk drive
- you can copy paste the firmware onto drive
- the drive will change for Circuit python and no reaction for Micro Python
- Install and open thonny IDE
- IDE should automatically detect pico
from machine import Pin
led = Pin("LED", Pin.OUT)
led.value(1)
led.value(0)
from machine import Pin
import time
led = Pin("LED", Pin.OUT) # Pin(25, Pin.OUT)
for i in range(1, 5):
print(i)
led.value(1)
time.sleep(1) # Use 1 second instead of 10 seconds for better visibility
led.value(0)
time.sleep(1)
Configure Mu Editor so that Code can be seen running in real time., ie as soon as the code is saved , the result reflected in LEDs directly .
- sudo apt-get update
- sudo apt-get -f upgrade
- apt install libfuse2
- Download and Install Mu Editor
- Copy paste below program into code.py
- Save the file in the device
- Open Mu Editor
- Should automatically recognise PICO and Opens code.py
Blink Program
import board
import time
from digitalio import DigitalInOut, Direction,Pull
led = DigitalInOut(board.LED)
led.direction = Direction.OUTPUT
#Connect LED between Pin1 ie GP0 and Pin 2
op = DigitalInOut(board.GP0)
op.direction = Direction.OUTPUT
while 1:
if led.value==0: led.value= True
elif led.value==1:led.value = False
time.sleep(0.5)
if op.value==0: op.value= True
elif op.value==1:op.value = False
time.sleep(0.5)
Input Switch
import time
import board
import digitalio
button = digitalio.DigitalInOut(board.GP0)
button.switch_to_input(pull=digitalio.Pull.UP )
while True:
print(button.value)
time.sleep(0.5)
https://learn.adafruit.com/getting-started-with-raspberry-pi-pico-circuitpython/blinky-and-a-button https://www.youtube.com/watch?v=nYA4PVljE4Q