summaryrefslogtreecommitdiffstats
path: root/movement/watch_faces/sensor
diff options
context:
space:
mode:
authorJoey Castillo <joeycastillo@utexas.edu>2022-04-01 15:43:19 -0400
committerJoey Castillo <joeycastillo@utexas.edu>2022-04-02 10:07:18 -0400
commitfa0a424857fc3cdda56057f9e0201eaa30044489 (patch)
tree8a35adf7a4daac72435e405d98cd5996b20e48e8 /movement/watch_faces/sensor
parent4ebc4e97ce3aa46909907f8b50a23ceb520326e0 (diff)
downloadSensor-Watch-fa0a424857fc3cdda56057f9e0201eaa30044489.tar.gz
Sensor-Watch-fa0a424857fc3cdda56057f9e0201eaa30044489.tar.bz2
Sensor-Watch-fa0a424857fc3cdda56057f9e0201eaa30044489.zip
thermistor readout: fix change in units when waking from sleep
Diffstat (limited to 'movement/watch_faces/sensor')
-rw-r--r--movement/watch_faces/sensor/thermistor_readout_face.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/movement/watch_faces/sensor/thermistor_readout_face.c b/movement/watch_faces/sensor/thermistor_readout_face.c
index b97c8432..28106022 100644
--- a/movement/watch_faces/sensor/thermistor_readout_face.c
+++ b/movement/watch_faces/sensor/thermistor_readout_face.c
@@ -63,7 +63,7 @@ bool thermistor_readout_face_loop(movement_event_t event, movement_settings_t *s
case EVENT_LIGHT_BUTTON_DOWN:
movement_illuminate_led();
break;
- case EVENT_ALARM_BUTTON_UP:
+ case EVENT_ALARM_BUTTON_DOWN:
settings->bit.use_imperial_units = !settings->bit.use_imperial_units;
_thermistor_readout_face_update_display(settings->bit.use_imperial_units);
break;