diff --git a/examples/pup/hub_cityhub/light_animate.py b/examples/pup/hub_cityhub/light_animate.py index db71543..1a3303f 100644 --- a/examples/pup/hub_cityhub/light_animate.py +++ b/examples/pup/hub_cityhub/light_animate.py @@ -7,7 +7,7 @@ from math import sin, pi hub = CityHub() # Make an animation with multiple colors. -hub.light.animate([Color.RED, Color.GREEN, None], interval=500) +hub.light.animate([Color.RED, Color.GREEN, Color.NONE], interval=500) wait(10000) diff --git a/examples/pup/hub_primehub/light_animate.py b/examples/pup/hub_primehub/light_animate.py index 1080154..eb31667 100644 --- a/examples/pup/hub_primehub/light_animate.py +++ b/examples/pup/hub_primehub/light_animate.py @@ -7,7 +7,7 @@ from math import sin, pi hub = PrimeHub() # Make an animation with multiple colors. -hub.light.animate([Color.RED, Color.GREEN, None], interval=500) +hub.light.animate([Color.RED, Color.GREEN, Color.NONE], interval=500) wait(10000) diff --git a/examples/pup/hub_shared/light_animate.py b/examples/pup/hub_shared/light_animate.py index f2fff59..eb765ea 100644 --- a/examples/pup/hub_shared/light_animate.py +++ b/examples/pup/hub_shared/light_animate.py @@ -8,7 +8,7 @@ from math import sin, pi hub = ExampleHub() # Make an animation with multiple colors. -hub.light.animate([Color.RED, Color.GREEN, None], interval=500) +hub.light.animate([Color.RED, Color.GREEN, Color.NONE], interval=500) wait(10000) diff --git a/examples/pup/hub_technichub/light_animate.py b/examples/pup/hub_technichub/light_animate.py index 06f68ab..6cec097 100644 --- a/examples/pup/hub_technichub/light_animate.py +++ b/examples/pup/hub_technichub/light_animate.py @@ -7,7 +7,7 @@ from math import sin, pi hub = TechnicHub() # Make an animation with multiple colors. -hub.light.animate([Color.RED, Color.GREEN, None], interval=500) +hub.light.animate([Color.RED, Color.GREEN, Color.NONE], interval=500) wait(10000)