We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5005b17 + e9c4c62 commit ea66fcbCopy full SHA for ea66fcb
1 file changed
NeoKey_MX_and_CHOC_Breakouts/CircuitPython/HID/code.py
@@ -71,6 +71,6 @@
71
# If there is a key released event, run this block.
72
if event and event.released:
73
# Turn off the LEDs.
74
- pixels.fill((0, 0, 0))
+ pixels[event.key_number] = (0, 0, 0)
75
# Report that the key switch has been released.
76
keyboard.release_all()
0 commit comments