- Create http.cpp and http.hpp - functions for initializing a http server - function for URL api/joystick - receive joystick data from http post request - parse json, define joystick position (function from joystick.hpp) - send data to control task via queue - control.hpp/cpp: - add HTTP mode to handle loop - receive joystick commands from queue, generate commands, send to motorctl - upgrade changeMode function with ability to run functions at switch FROM and TO certain modes - add code to start/stop wifi and webserver when switching to/from HTTP mode - change toggleModes and toggleIdle to use the changeMode function - main.cpp: - add several sections with code for testing new functions (commented out) - add http loglevel - buzzer.cpp: - add command (press 4 times) to toggle between HTTP and JOYSTICK mode FIXME: moved initialization of wifi to main.cpp at startup because of an error -> resolve this and place wifi start and stop functions into mode-change as intended currently works best in accesspoint mode with laptop connected using the react-webapp
61 lines
1.9 KiB
C++
61 lines
1.9 KiB
C++
#pragma once
|
|
|
|
#include "motordrivers.hpp"
|
|
#include "motorctl.hpp"
|
|
#include "buzzer.hpp"
|
|
|
|
|
|
//enum that decides how the motors get controlled
|
|
enum class controlMode_t {IDLE, JOYSTICK, MASSAGE, HTTP, MQTT, BLUETOOTH, AUTO};
|
|
//extern controlMode_t mode;
|
|
extern const char* controlModeStr[7];
|
|
|
|
|
|
|
|
//==================================
|
|
//========= control class ==========
|
|
//==================================
|
|
//controls the mode the armchair operates
|
|
//repeatedly generates the motor commands corresponding to current mode and sends those to motorcontrol
|
|
class controlledArmchair {
|
|
public:
|
|
//--- constructor ---
|
|
controlledArmchair (
|
|
buzzer_t* buzzer_f,
|
|
controlledMotor* motorLeft_f,
|
|
controlledMotor* motorRight_f
|
|
);
|
|
|
|
//--- functions ---
|
|
//task that repeatedly generates motor commands depending on the current mode
|
|
void startHandleLoop();
|
|
|
|
//function that changes to a specified control mode
|
|
void changeMode(controlMode_t modeNew);
|
|
|
|
//function that toggle between IDLE and previous active mode (or default if not switched to certain mode yet)
|
|
void toggleIdle();
|
|
|
|
//function that toggles between two modes, but prefers first argument if entirely different mode is currently active
|
|
void toggleModes(controlMode_t modePrimary, controlMode_t modeSecondary);
|
|
|
|
private:
|
|
|
|
//--- objects ---
|
|
buzzer_t* buzzer;
|
|
controlledMotor* motorLeft;
|
|
controlledMotor* motorRight;
|
|
|
|
//---variables ---
|
|
//struct for motor commands returned by generate functions of each mode
|
|
motorCommands_t commands;
|
|
|
|
//definition of mode enum
|
|
controlMode_t mode = controlMode_t::IDLE;
|
|
|
|
//variable to store mode when toggling IDLE mode
|
|
controlMode_t modePrevious = controlMode_t::JOYSTICK; //default mode
|
|
};
|
|
|
|
|