RoboCircuits
Published © CC BY-ND

The Raspberry Pi Pico Tutorial 1

Powerful, Cheap and MicroPython

BeginnerFull instructions provided1 hour1,157
The Raspberry Pi Pico Tutorial 1

Things used in this project

Hardware components

Raspberry Pi Pico
Raspberry Pi Pico
×1

Software apps and online services

VS Code
Microsoft VS Code

Story

Read more

Code

Blink

MicroPython
from machine import Pin
import time

pin = Pin(25, Pin.OUT)  

while True:             
    pin.toggle()
    time.sleep_ms(1500)
    pin.toggle()
    time.sleep_ms(500)

Credits

RoboCircuits

RoboCircuits

33 projects • 209 followers
YouTuber, Explorer, Creator, Programmer, Arduino Lover and Engineer

Comments