10 lines
224 B
Python
10 lines
224 B
Python
# SPDX-FileCopyrightText: 2017 Kattni Rembor for Adafruit Industries
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
import time
|
|
from adafruit_circuitplayground.express import cpx
|
|
|
|
while True:
|
|
print((cpx.light, ))
|
|
time.sleep(0.1)
|