accelerometer: have been using a threshold of 8 for latest tests

This commit is contained in:
Joey Castillo
2024-12-16 16:40:21 -05:00
parent 315cbb438e
commit 99a28dc886
2 changed files with 2 additions and 2 deletions

View File

@@ -59,7 +59,7 @@ void accel_interrupt_count_face_setup(uint8_t watch_face_index, void ** context_
memset(*context_ptr, 0, sizeof(accel_interrupt_count_state_t));
accel_interrupt_count_state_t *state = (accel_interrupt_count_state_t *)*context_ptr;
/// TODO: hook up to movement methods for tracking threshold
state->threshold = 1;
state->threshold = 8;
}
}