Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tiny 2040: add button/LED example #803

Merged
merged 1 commit into from
Jul 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Tiny 2040: add button/LED example
  • Loading branch information
helgibbons committed Jul 21, 2023
commit c696cd5e2d37d7f989e5d51199f96c5b958495b5
28 changes: 28 additions & 0 deletions micropython/examples/tiny2040/button_test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Simple demo of how to use the RGB LED and read the button on Tiny 2040.

from pimoroni import Button, RGBLED
import time

led = RGBLED(18, 19, 20)
button_boot = Button(23)

# start with the LED off
led.set_rgb(0, 0, 0)

# flash the LED red, green and blue
led.set_rgb(255, 0, 0)
time.sleep(0.5)
led.set_rgb(0, 255, 0)
time.sleep(0.5)
led.set_rgb(0, 0, 255)
time.sleep(0.5)

print("Press the button!")

while True:
# flash the LED white when the button is pressed
if button_boot.read():
print("Button pressed!")
led.set_rgb(255, 255, 255)
time.sleep(0.5)
led.set_rgb(0, 0, 0)