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.
16 lines
288 B
16 lines
288 B
4 years ago
|
#!/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()
|