Add control.hpp and control.cpp - task that repeatedly generates motor commands depending on the current mode - function to change to a specified control mode Add button.hpp and button.cpp - class which runs commands depending on the count a button was pressed Update main.cpp - create button task - create control task - comment out previous testing code - remove unnecessary includes (already included in config.hpp) Add control.cpp and button.cpp to CMakeLists Notes: Tested this state on the armchair: All currently implemented features work. You can switch between IDLE and JOYSTICK by pressing the button 2 or 3 times. Also driving works well (limited to 60% duty, with no fans yet).
16 lines
392 B
C++
16 lines
392 B
C++
#pragma once
|
|
|
|
|
|
//enum that decides how the motors get controlled
|
|
enum class controlMode_t {IDLE, JOYSTICK, MASSAGE, MQTT, BLUETOOTH, AUTO};
|
|
//extern controlMode_t mode;
|
|
|
|
//task that repeatedly generates motor commands depending on the current mode
|
|
void task_control(void * pvParameters);
|
|
|
|
//function that changes to a specified control mode
|
|
void control_changeMode(controlMode_t modeNew);
|
|
|
|
|
|
|