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.
|
#!/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 + '\n\n\n')
|
|
led_test.display("Print this message")
|
|
|
|
if __name__ == "__main__":
|
|
main()
|