From 70df86f70c54acb5967cfbf124a208b67456f233 Mon Sep 17 00:00:00 2001 From: jonny_l480 Date: Wed, 4 Sep 2024 16:19:40 +0200 Subject: [PATCH] Adjust: start working on tracking position --- common/chairAdjust.cpp | 4 ++++ common/chairAdjust.hpp | 3 +++ 2 files changed, 7 insertions(+) diff --git a/common/chairAdjust.cpp b/common/chairAdjust.cpp index 06b2b0d..441968d 100644 --- a/common/chairAdjust.cpp +++ b/common/chairAdjust.cpp @@ -85,6 +85,10 @@ void cControlledRest::setState(restState_t targetState) } } + void setTargetPercent(float targetPercent); + void handle(){ + + } //==================================== diff --git a/common/chairAdjust.hpp b/common/chairAdjust.hpp index 54f9abe..c7641ab 100644 --- a/common/chairAdjust.hpp +++ b/common/chairAdjust.hpp @@ -20,6 +20,9 @@ class cControlledRest { public: cControlledRest(gpio_num_t gpio_up, gpio_num_t gpio_down, const char *name); void setState(restState_t targetState); + float getPercent(); + void setTargetPercent(float targetPercent); + void handle(); void stop(); private: