Tarantula3DIYables
Published © LGPL

Getting Started With Raspberry Pi Pico

Couple of months ago, I bought a "Raspberry Pi Pico" to get some hands-on experience of it and to create some amazing projects using it.

BeginnerProtip1 hour1,299
Getting Started With Raspberry Pi Pico

Things used in this project

Hardware components

Raspberry Pi Pico
Raspberry Pi Pico
×1
Starter Kit
DIYables Starter Kit
×1

Software apps and online services

Arduino IDE
Arduino IDE
thonny IDE

Story

Read more

Code

Blink.py

MicroPython
from machine import Pin, Timer
led = Pin(25, Pin.OUT)
timer = Timer()

def blink(timer):
	led.toggle()
	
timer.init(freq=2.5, mode=Timer.PERIODIC, callback=blink)

Credits

Tarantula3
72 projects • 89 followers
There were 1000+ sperms but I was the fastest one..
DIYables
1 project • 92 followers
I would like to invite you to join and add your projects to DIYables platform https://www.hackster.io/diyables

Comments