aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSelene ToyKeeper2017-10-06 00:33:32 -0600
committerSelene ToyKeeper2017-10-06 00:33:32 -0600
commit37ce9f609ee5dbaf8125815d84fe17ed3fc30a3f (patch)
tree2ebe4b2dd7c537d07024a8860c759ff1708a28d6
parentUse either full or quarter speed in nice delays, based on output level. (diff)
downloadanduril-37ce9f609ee5dbaf8125815d84fe17ed3fc30a3f.tar.gz
anduril-37ce9f609ee5dbaf8125815d84fe17ed3fc30a3f.tar.bz2
anduril-37ce9f609ee5dbaf8125815d84fe17ed3fc30a3f.zip
Temperature is 14.1 now, now 13.2. Divide by 2 instead of 4 before display.
-rw-r--r--spaghetti-monster/anduril/anduril.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/spaghetti-monster/anduril/anduril.c b/spaghetti-monster/anduril/anduril.c
index 1fdf457..e2e77ef 100644
--- a/spaghetti-monster/anduril/anduril.c
+++ b/spaghetti-monster/anduril/anduril.c
@@ -1165,7 +1165,7 @@ void loop() {
#ifdef USE_THERMAL_REGULATION
// TODO: blink out therm_ceil during thermal_config_state
else if (state == tempcheck_state) {
- blink_num(temperature>>2);
+ blink_num(temperature>>1);
nice_delay_ms(1000);
}
#endif