From b60d63f2634358e50de4aa77aa2f3b567c94f7aa Mon Sep 17 00:00:00 2001 From: Joey Castillo Date: Wed, 1 Dec 2021 09:25:40 -0500 Subject: [PATCH] movement: after profiling, temp and battery can ignore timeout --- movement/watch_faces/demos/voltage_face.c | 4 ++-- movement/watch_faces/thermistor/thermistor_readout_face.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/movement/watch_faces/demos/voltage_face.c b/movement/watch_faces/demos/voltage_face.c index 98b22c76..bdc25679 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 5cee2e96..8c5645e2 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;