- Create class 'controlledMotor':
- handles 'fading / ramp' of the pwm duty
- handles current limit **not implemented yet**
- has .handle function that is intended to be run very fast in another task
commands are sent via queue
- Create config.hpp
- Globally available instance motorLeft of controlledMotor class
- Create config.cpp
- Configuration of motordriver and control parameters for motorLeft
- Add config.cpp and motorctl.cpp to cmakelists
- main.cpp:
- create 'task_motorctl' which repeatedly runs motorLeft.handle()
- modify testing code for testing the new class
- comments
The fading/ramp capability of the new class was tested successfully
using a breakoutboard with an led.
- Add brief description
- Add installation and compilation instructions
- Add links to websites and connection-plan
- Add planned features
- Add Usage section with usage description of old firmware
- create class 'single100a' in motordrivers.hpp and motordrivers.cpp
- add code for testing the driver in main.cpp (test with led was successful)
- update cmakelists, to also compile the new .cpp file
Rewrite of firmware controlling an electric armchair (previous firmware
developed 2019-2021)
- Init esp-idf project: with esp-idf version v4.4.1 installed ran command `idf.py create-project
armchair`
- Add connection plan from old repo