Simple test¶
Ensure your device works with this simple test.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | # SPDX-FileCopyrightText: 2021 ladyada for Adafruit Industries
# SPDX-License-Identifier: MIT
import time
import board
from rainbowio import colorwheel
import adafruit_rgbled
# Pin the Red LED is connected to
RED_LED = board.D5
# Pin the Green LED is connected to
GREEN_LED = board.D6
# Pin the Blue LED is connected to
BLUE_LED = board.D7
# Create the RGB LED object
led = adafruit_rgbled.RGBLED(RED_LED, GREEN_LED, BLUE_LED)
# Optionally, you can also create the RGB LED object with inverted PWM
# led = adafruit_rgbled.RGBLED(RED_LED, GREEN_LED, BLUE_LED, invert_pwm=True)
def rainbow_cycle(wait):
for i in range(255):
i = (i + 1) % 256
led.color = colorwheel(i)
time.sleep(wait)
while True:
# setting RGB LED color to RGB Tuples (R, G, B)
led.color = (255, 0, 0)
time.sleep(1)
led.color = (0, 255, 0)
time.sleep(1)
led.color = (0, 0, 255)
time.sleep(1)
# setting RGB LED color to 24-bit integer values
led.color = 0xFF0000
time.sleep(1)
led.color = 0x00FF00
time.sleep(1)
led.color = 0x0000FF
time.sleep(1)
# rainbow cycle the RGB LED
rainbow_cycle(0.1)
|