diff options
author | Vincent Ambo <tazjin@google.com> | 2020-05-14T13·30+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2020-05-14T13·30+0100 |
commit | 5f10238c62d3ff1755610babe28075baaf3439c5 (patch) | |
tree | 2cc5049d0e2ce8e98cde9682c1081396a5add388 /fun/idual | |
parent | 0be487a5e050d0672b503044e8f4baca0535e5f3 (diff) |
feat(fun/idual): Change alarm light from 'morning' to 'sun' r/716
The latter is much brighter and warmer, this is probably better.
Diffstat (limited to 'fun/idual')
-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 f5a8d274f61b..4c5519d0adc5 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('morning') + self.send_cmd('sun') time.sleep(0.3) self.send_cmd('on') time.sleep(0.3) |