summaryrefslogtreecommitdiff
path: root/src/components/motion
diff options
context:
space:
mode:
authorTim Keller <geekboy1011@gmail.com>2021-09-27 02:52:02 +0000
committerTim Keller <geekboy1011@gmail.com>2022-01-04 01:59:01 +0000
commit3ebf002f9db75513d036c0eaa0863e75882b3a40 (patch)
treec9e78252084716e797b56793c8b7f1cbd51188be /src/components/motion
parentad42cdf120ddd835331be6c1d1ee86e8e14a4479 (diff)
Add start of settings app for senstivity.
really just debugging. I want to make it more configurable then high med low. Position of setting needs a new location...dynamicly adding it currently at the end. Which honestly im fine with.
Diffstat (limited to 'src/components/motion')
-rw-r--r--src/components/motion/MotionController.cpp4
-rw-r--r--src/components/motion/MotionController.h3
2 files changed, 4 insertions, 3 deletions
diff --git a/src/components/motion/MotionController.cpp b/src/components/motion/MotionController.cpp
index 58a7f672..615ad26c 100644
--- a/src/components/motion/MotionController.cpp
+++ b/src/components/motion/MotionController.cpp
@@ -45,12 +45,12 @@ bool MotionController::Should_RaiseWake(bool isSleeping) {
return false;
}
-bool MotionController::Should_ShakeWake() {
+bool MotionController::Should_ShakeWake(uint16_t thresh) {
bool wake = false;
auto diff = xTaskGetTickCount() - lastShakeTime;
lastShakeTime = xTaskGetTickCount();
int32_t speed = std::abs(y + z - lastYForShake - lastZForShake) / diff * 10;
- if (speed > 150) { // TODO move threshold to a setting
+ if (speed > thresh) {
wake = true;
}
lastXForShake = x;
diff --git a/src/components/motion/MotionController.h b/src/components/motion/MotionController.h
index bd925cc7..28f7d3a7 100644
--- a/src/components/motion/MotionController.h
+++ b/src/components/motion/MotionController.h
@@ -35,7 +35,8 @@ namespace Pinetime {
uint32_t GetTripSteps() const {
return currentTripSteps;
}
- bool Should_ShakeWake();
+
+ bool Should_ShakeWake(uint16_t thresh);
bool Should_RaiseWake(bool isSleeping);
void IsSensorOk(bool isOk);