From 37ce9f609ee5dbaf8125815d84fe17ed3fc30a3f Mon Sep 17 00:00:00 2001 From: Selene ToyKeeper Date: Fri, 6 Oct 2017 00:33:32 -0600 Subject: Temperature is 14.1 now, now 13.2. Divide by 2 instead of 4 before display. --- spaghetti-monster/anduril/anduril.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'spaghetti-monster') 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 -- cgit v1.2.3