code.py
 1  # SPDX-FileCopyrightText: 2017 Kattni Rembor for Adafruit Industries
 2  #
 3  # SPDX-License-Identifier: MIT
 4  
 5  from adafruit_circuitplayground.express import cpx
 6  
 7  cpx.pixels.brightness = 0.3
 8  
 9  while True:
10      cpx.pixels[0] = (255, 0, 0)
11      cpx.pixels[1] = (0, 0, 255)