diff options
author | Vincent Ambo <tazjin@google.com> | 2020-06-10T00·12+0000 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2020-06-10T00·12+0000 |
commit | 8be09a4c40ccdb04fd26ce907e9af09fc99d7d67 (patch) | |
tree | e3bdda76205668be61622f0ac870f6aaa7cd4e9f | |
parent | 9b6afd090c0870c9ef194e3ecd264d582641a4a7 (diff) |
chore(fun/idual): Switch wakeup light to random colours r/888
-rw-r--r-- | fun/idual/idual/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fun/idual/idual/__init__.py b/fun/idual/idual/__init__.py index 4c5519d0adc5..35c3bbae9039 100644 --- a/fun/idual/idual/__init__.py +++ b/fun/idual/idual/__init__.py @@ -59,7 +59,7 @@ class LightController: "Turn on the lights in the morning, try repeatedly for reasons." print('Turning on the lights. Wakey, wakey!') for i in range(5): - self.send_cmd('sun') + self.send_cmd('random') time.sleep(0.3) self.send_cmd('on') time.sleep(0.3) |