ChristmasTree/Examples/huecycle.py

13 lines
209 B
Python
Raw Normal View History

2025-12-05 01:19:16 +01:00
from tree import RGBXmasTree
from colorzero import Color, Hue
tree = RGBXmasTree()
tree.color = Color('red')
try:
while True:
tree.color += Hue(deg=1)
except KeyboardInterrupt:
tree.close()