diff options
| author | Selene ToyKeeper | 2017-10-06 00:33:32 -0600 |
|---|---|---|
| committer | Selene ToyKeeper | 2017-10-06 00:33:32 -0600 |
| commit | 37ce9f609ee5dbaf8125815d84fe17ed3fc30a3f (patch) | |
| tree | 2ebe4b2dd7c537d07024a8860c759ff1708a28d6 | |
| parent | Use either full or quarter speed in nice delays, based on output level. (diff) | |
| download | anduril-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.c | 2 |
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 |
