armchair_fw/common/chairAdjust.hpp
jonny 89cab00acc Rework cControlledRest (for MIN_TIME_ON, MIN_TIME_OFF)
- split up in more simple methods
- clearer structure
2024-09-06 11:05:31 +02:00

76 lines
2.3 KiB
C++

#pragma once
extern "C"
{
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "freertos/semphr.h"
#include "driver/gpio.h"
}
#include "joystick.hpp"
typedef enum {
REST_OFF = 0,
REST_DOWN,
REST_UP
} restState_t;
extern const char* restStateStr[];
//=====================================
//======= cControlledRest class =======
//=====================================
//class that controls 2 relays powering a motor that moves a rest of the armchair up or down
//2 instances will be created one for back and one for leg rest
class cControlledRest {
public:
cControlledRest(gpio_num_t gpio_up, gpio_num_t gpio_down, uint32_t travelDurationMs, const char *name, float defaultPosition = 0);
void requestStateChange(restState_t targetState); //mutex
restState_t getState() const {return state;};
restState_t getNextState() const {return nextState;};
float getPercent(); //TODO update position first
void setTargetPercent(float targetPercent); //mutex
float getTargetPercent() const {return positionTarget;};
void handleStopAtPosReached(); //mutex
void handleStateChange(); //mutex
const char * getName() const {return name;};
TaskHandle_t taskHandle = NULL; //task that repeatedly runs the handle() method, is assigned at task creation
private:
void init();
void updatePosition();
void changeState(restState_t newState);
SemaphoreHandle_t mutex;
char name[32];
const gpio_num_t gpio_up;
const gpio_num_t gpio_down;
const uint32_t travelDuration = 12000;
restState_t state = REST_OFF;
restState_t nextState = REST_OFF;
uint32_t timestamp_lastStateChange = 0;
uint32_t timestamp_lastPosUpdate = 0;
float positionTarget = 0;
float positionNow = 0;
};
//===========================
//==== chairAdjust_task =====
//===========================
// repeatedly runs handle method of specified ControlledRest object to turn of the rest, when activated by setState()
void chairAdjust_task( void * cControlledRest );
//====================================
//====== controlChairAdjustment ======
//====================================
//function that controls the two rests according to joystick data (applies threshold, defines direction)
void controlChairAdjustment(joystickData_t data, cControlledRest * legRest, cControlledRest * backRest);