Merge pull request #5 from pimoroni/patch-decorator-example

Decorator key test example
This commit is contained in:
Philip Howard 2021-05-18 15:21:55 +01:00 committed by GitHub
commit 39fd2719f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,46 @@
# SPDX-FileCopyrightText: 2021 Philip Howard
#
# SPDX-License-Identifier: MIT
# This example allows you to test each key and LED in turn
# 1. At startup all LEDs should be white
# 2. Press a key and it will turn blue
# 3. Release that key and it will turn white
# 4. *Hold* a key and it will turn red
# 5. Release a *held* key and it will turn green.
# If you can turn all your keys blue -> red -> green, they're good!
# Drop the keybow2040.py file into your `lib` folder on your `CIRCUITPY` drive.
import board
from keybow2040 import Keybow2040
import time
i2c = board.I2C()
keybow = Keybow2040(i2c)
keys = keybow.keys
keybow.set_all(64, 64, 64)
for key in keys:
@keybow.on_press(key)
def press_handler(key):
print("Key {} pressed".format(key.number))
key.set_led(0, 0, 255)
@keybow.on_release(key)
def release_handler(key):
print("Key {} released".format(key.number))
if key.rgb == [255, 0, 0]:
key.set_led(0, 255, 0)
else:
key.set_led(64, 64, 64)
@keybow.on_hold(key)
def hold_handler(key):
print("Key {} held".format(key.number))
key.set_led(255, 0, 0)
while True:
keybow.update()
time.sleep(1.0 / 60)