remove orientation change counter

This commit is contained in:
Joey Castillo
2025-05-13 18:21:58 -04:00
parent 27f0c629d8
commit 0739382fb8
4 changed files with 14 additions and 38 deletions

View File

@@ -47,7 +47,8 @@ static void _accel_interrupt_count_face_update_display(accel_interrupt_count_sta
else watch_display_text(WATCH_POSITION_TOP_RIGHT, " A");
// Orientation changes / active minutes
uint16_t orientation_changes = tc_count16_get_count(2);
uint16_t orientation_changes = 0;
if (tc_is_enabled(2)) orientation_changes = tc_count16_get_count(2);
sprintf(buf, "%-3u/%2d", orientation_changes > 999 ? 999 : orientation_changes, active_minutes);
watch_display_text(WATCH_POSITION_BOTTOM, buf);
}

View File

@@ -37,7 +37,7 @@
* Default behavior is to show the last 100 data points. Format is:
* - Top left is display title (LOG or AC for Activity)
* - Top right is index backwards in the data log.
* - Bottom left is the number of orientation changes in the five minutes logged.
* - Bottom left is the number of orientation changes in the five minutes logged. (currently non-functional)
* - Bottom right is number of stationary minutes (0 to 5)
*
* A short press of the Light button reveals the time (bottom row) and date (top right) of the data point.