Create cpx-lib-buttons.py

cpx version
This commit is contained in:
Mike Barela 2018-07-25 13:33:39 -04:00 committed by GitHub
parent 5213b70d6d
commit 2cb212cddc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,19 @@
from adafruit_circuitplayground.express import cpx
while True:
if cpx.button_a:
cpx.pixels[0] = (0, 30, 0)
else:
cpx.pixels[0] = (0, 0, 0)
if cpx.button_b:
cpx.pixels[9] = (0, 30, 0)
else:
cpx.pixels[9] = (0, 0, 0)
if cpx.switch:
cpx.pixels[4] = (0, 0, 30)
cpx.pixels[5] = (0, 0, 0)
else:
cpx.pixels[4] = (0, 0, 0)
cpx.pixels[5] = (0, 0, 30)