Adafruit_Learning_System_Gu.../Make_It_Sense/cpx-lib-buttons/code.py
2022-02-22 15:18:15 -05:00

23 lines
534 B
Python

# SPDX-FileCopyrightText: 2018 Anne Barela for Adafruit Industries
#
# SPDX-License-Identifier: MIT
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)