You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RPi_WS2812b_LED/vp_test.py

16 lines
288 B

#!/usr/bin/python3
from led_display import LightDisplay
def main():
led_test = LightDisplay(8, 16, "blue", 2)
print(led_test.color)
print(led_test.x)
print(led_test.y)
print(led_test.speed)
print("")
led_test.display()
if __name__ == "__main__":
main()