Once you've finished setting up your QT Py RP2040 with CircuitPython, you can access the code and necessary libraries by downloading the Project Bundle.
To do this, click on the Download Project Bundle button in the window below. It will download as a zipped folder.
# SPDX-FileCopyrightText: 2021 Ruiz Bros for Adafruit Industries # SPDX-License-Identifier: MIT """ This example displays three chase animations in sequence. """ import board import neopixel from adafruit_led_animation.animation.chase import Chase from adafruit_led_animation.sequence import AnimationSequence from adafruit_led_animation.color import ( RED, GREEN, BLUE ) # Update to match the pin connected to your NeoPixels pixel_pin = board.D0 # Update to match the number of NeoPixels you have connected pixel_num = 8 pixels = neopixel.NeoPixel(pixel_pin, pixel_num, brightness=0.8, auto_write=False) RedChase = Chase(pixels, speed=0.4, color=RED, size=1, spacing=8, reverse=True) GreenChase = Chase(pixels, speed=0.4, color=GREEN, size=1, spacing=8, reverse=True) BlueChase = Chase(pixels, speed=0.4, color=BLUE, size=1, spacing=8, reverse=True) animations = AnimationSequence( RedChase, GreenChase, BlueChase, advance_interval=4, auto_clear=True, ) while True: animations.animate()
After downloading the Project Bundle, plug your QT Py RP2040 into the computer USB port. You should see a new flash drive appear in the computer's File Explorer or Finder (depending on your operating system) called CIRCUITPY. Unzip the folder and copy the following items to the QT Py RP2040's CIRCUITPY drive.
- lib folder
- code.py
Your QT Py RP2040 CIRCUITPY drive should look like this after copying the lib folder and code.py file.
Text editor powered by tinymce.