2021-03-10 22:57:52 +01:00
|
|
|
# SPDX-FileCopyrightText: 2021 Sandy Macdonald
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
# This example displays a rainbow animation on Keybow 2040's keys.
|
|
|
|
|
2021-03-11 21:43:13 +01:00
|
|
|
# Drop the keybow2040.py file into your `lib` folder on your `CIRCUITPY` drive.
|
|
|
|
|
2021-03-10 22:57:52 +01:00
|
|
|
import math
|
|
|
|
import board
|
2021-03-12 01:00:27 +01:00
|
|
|
from keybow2040 import Keybow2040, number_to_xy, hsv_to_rgb
|
2021-03-10 22:57:52 +01:00
|
|
|
|
|
|
|
# Set up Keybow
|
|
|
|
i2c = board.I2C()
|
|
|
|
keybow = Keybow2040(i2c)
|
|
|
|
keys = keybow.keys
|
|
|
|
|
|
|
|
# Increment step to shift animation across keys.
|
|
|
|
step = 0
|
|
|
|
|
|
|
|
while True:
|
|
|
|
# Always remember to call keybow.update() on every iteration of your loop!
|
|
|
|
keybow.update()
|
|
|
|
|
|
|
|
step += 1
|
|
|
|
|
|
|
|
for i in range(16):
|
|
|
|
# Convert the key number to an x/y coordinate to calculate the hue
|
|
|
|
# in a matrix style-y.
|
|
|
|
x, y = number_to_xy(i)
|
|
|
|
|
|
|
|
# Calculate the hue.
|
|
|
|
hue = (x + y + (step / 20)) / 8
|
|
|
|
hue = hue - int(hue)
|
|
|
|
hue = hue - math.floor(hue)
|
|
|
|
|
|
|
|
# Convert the hue to RGB values.
|
|
|
|
r, g, b = hsv_to_rgb(hue, 1, 1)
|
|
|
|
|
|
|
|
# Display it on the key!
|
|
|
|
keys[i].set_led(r, g, b)
|