Carlotta Berry
Published

Lily∞Bot: Get started with Raspberry Pi Pico W

In this tutorial you learn how to set up the Lily∞Bot to work with the Raspberry Pico W to be programmed in MicroPython in Visual Studio.

BeginnerProtip1 hour155
Lily∞Bot: Get started with Raspberry Pi Pico W

Things used in this project

Hardware components

Lily∞Bot Robot with Raspberry PI PICO W
×1

Software apps and online services

MicroPython
MicroPython

Story

Read more

Custom parts and enclosures

Lily Bot GIT HUB Repository

Schematics

Lily∞Bot with 2 tiny breadboards and Raspberry Pi Pico W

Code

Code to blink the internal LED on the Lily∞Bot

MicroPython
By getting this LED to blink, this confirms you have set up the software correctly on the robot and you are ready to start programming.
#CAB 9.14.23 buzzer.py
#blink internal LED on Raspberry PI Pico W on LilyBot
#LED on pin 25
#https://www.noiresteminist.com/shop

from machine import Pin
from utime import sleep

pin = Pin("LED", Pin.OUT)

print("LED starts flashing...")
while True:
    pin.toggle()
    sleep(1) # sleep 1sec

Credits

Carlotta Berry
14 projects • 21 followers
Carlotta Berry is a Professor and Dr. Lawrence J. Giacoletto Endowed Chair for Electrical and Computer Engineering at Rose-Hulman.
Contact

Comments

Please log in or sign up to comment.