aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/motion/MotionController.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/motion/MotionController.h')
-rw-r--r--src/components/motion/MotionController.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/components/motion/MotionController.h b/src/components/motion/MotionController.h
index eb8d04aa..87dbcd1f 100644
--- a/src/components/motion/MotionController.h
+++ b/src/components/motion/MotionController.h
@@ -50,14 +50,6 @@ namespace Pinetime {
return accumulatedSpeed;
}
- void IsSensorOk(bool isOk) {
- isSensorOk = isOk;
- }
-
- bool IsSensorOk() const {
- return isSensorOk;
- }
-
DeviceTypes DeviceType() const {
return deviceType;
}
@@ -83,7 +75,6 @@ namespace Pinetime {
int16_t z = 0;
int32_t accumulatedSpeed = 0;
- bool isSensorOk = false;
DeviceTypes deviceType = DeviceTypes::Unknown;
Pinetime::Controllers::MotionService* service = nullptr;
};