210 Commits

Author SHA1 Message Date
jonny_ji7
f7ce61c666 Add function 'joystick_generateCommandsDriving'
- add new function to joystick.hpp/cpp
  - reads data from joystick and generates commands for driving in
    "joystick" mode
  - returns struct with commands for both motors

- main.cpp
  - add code for testing the new function
  - enable 5v regulator (needed for pullups AB left motor)
  - add newly created motorRight to handle function

- add new struct with two motorcommands to motorctl.hpp
2022-06-09 21:42:01 +02:00
jonny_ji7
4109c6f239 Add 'motorRight' instance and configuration 2022-06-09 12:05:27 +02:00
jonny_ji7
4eb1c5d43a Create class 'evaluatedJoystick'
- Create class 'evaluatedJoystick'
  - evaluates a joystick with 2 analog signals
  - scales the adc input to coordinates with detailed tolerances
  - calculates angle and radius
  - defines an enum with position information
- Add joystick configuration and class instance to config.cpp
- Add code for testing the new class to main.cpp
- Add joystick.cpp to cmakelists

now function `joystick.getData` can be used globally to obtain a struct with
current position data of the joystick
2022-06-08 19:50:17 +02:00
jonny_ji7
84bfe211ac Create class 'controlledMotor', Create config
- 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.
2022-06-05 16:36:57 +02:00
jonny_ji7
bd691cfa9d Create diagram describing functions and classes
- new pdf file can be edited using draw.io app
- create flowchart describing the planned classes 'controlledMotor' and
  'currentsensor'
2022-06-05 16:29:40 +02:00
jonny_ji7
1b163259ec Create README.md: Instructions, Documentation
- 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
2022-06-04 22:05:09 +02:00
jonny_ji7
29dc5481bd Create connection plan
- create connection-plan.drawio.pdf with current wiring of the pcb
file can be edited using draw.io editor (drawing xml embedded into pdf)
2022-06-04 18:18:05 +02:00
jonny_ji7
b0d0b568a3 Create driver for 'single100a h-bridge'
- 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
2022-06-04 18:17:44 +02:00
jonny_ji7
37e9048daa Changes for C++ support, Add gitigore
- extern C around libraries and main function
- Include common libraries
- Create gitignore
2022-06-04 18:17:44 +02:00
jonny_ji7
ffb415fb11 init (esp-idf sample_project)
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
2022-06-04 18:17:15 +02:00