diff options
author | 2018-02-15 10:34:34 +0200 | |
---|---|---|
committer | 2018-02-15 10:34:34 +0200 | |
commit | 94b1a01f13b23b4dbc3885f5619a76b09603645a (patch) | |
tree | 2b72161390551375b6a19c18233889d8e194db5a /src | |
parent | 65e4dc58c29f4f2d82caad8190f5e8ca9402b834 (diff) | |
download | coffeetemp-94b1a01f13b23b4dbc3885f5619a76b09603645a.tar.gz coffeetemp-94b1a01f13b23b4dbc3885f5619a76b09603645a.tar.bz2 coffeetemp-94b1a01f13b23b4dbc3885f5619a76b09603645a.zip |
tempmodule: reduce power draw by not using the iled all the time.
Diffstat (limited to 'src')
-rw-r--r-- | src/tempmodule/main.ino | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tempmodule/main.ino b/src/tempmodule/main.ino index fd7d5d7..d5f6758 100644 --- a/src/tempmodule/main.ino +++ b/src/tempmodule/main.ino @@ -100,7 +100,7 @@ void loop(void) } indicator_update(data); - blink_led(iled, 20, 80); + delay(1000); ++ticker; } |