From: Joey Castillo Date: Wed, 1 Dec 2021 14:25:40 +0000 (-0500) Subject: movement: after profiling, temp and battery can ignore timeout X-Git-Url: https://git.earman.xyz/?a=commitdiff_plain;h=b60d63f2634358e50de4aa77aa2f3b567c94f7aa;p=sensor-watch.git movement: after profiling, temp and battery can ignore timeout --- diff --git a/movement/watch_faces/demos/voltage_face.c b/movement/watch_faces/demos/voltage_face.c index 98b22c7..bdc2567 100644 --- a/movement/watch_faces/demos/voltage_face.c +++ b/movement/watch_faces/demos/voltage_face.c @@ -47,8 +47,8 @@ bool voltage_face_loop(movement_event_t event, movement_settings_t *settings, vo watch_clear_indicator(WATCH_INDICATOR_SIGNAL); } break; - case EVENT_TIMEOUT: - movement_move_to_face(0); + case EVENT_LOW_ENERGY_UPDATE: + watch_display_string("BA SLEEP ", 0); break; default: break; diff --git a/movement/watch_faces/thermistor/thermistor_readout_face.c b/movement/watch_faces/thermistor/thermistor_readout_face.c index 5cee2e9..8c5645e 100644 --- a/movement/watch_faces/thermistor/thermistor_readout_face.c +++ b/movement/watch_faces/thermistor/thermistor_readout_face.c @@ -57,8 +57,8 @@ bool thermistor_readout_face_loop(movement_event_t event, movement_settings_t *s watch_clear_indicator(WATCH_INDICATOR_SIGNAL); } break; - case EVENT_TIMEOUT: - movement_move_to_face(0); + case EVENT_LOW_ENERGY_UPDATE: + watch_display_string("TE SLEEP ", 0); break; default: break;