Adafruit_Learning_System_Gu.../Make_It_Sense/cpx-lib-buttons.py
Mike Barela 2cb212cddc
Create cpx-lib-buttons.py
cpx version
2018-07-25 13:33:39 -04:00

19 lines
433 B
Python

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)