105 Commits

Author SHA1 Message Date
jonny_jr9
f76db1d9bc Outsource http, joystick to common/ and react-app to root
Same reason as before commit
Note: some changes to http were necessary due to global object
- untested!

Also remove unneded duplicate components folder
2023-09-07 12:59:15 +02:00
jonny_jr9
13b896accb Outsource currentsensor, motorctl, motordrivers to common/
since board_single uses mostly the same code as board_control and
board_motorctl several files are outsorced to common folder to prevent
dupliate code and different versions
2023-09-07 12:30:22 +02:00
jonny_jr9
ee5bad53ee Revert to V2.0 single board (additional folder)
New controller will be run with single controller at first...
get single board version from V2.0 and create new folder
(two boards version is kept)
-> copied firmware from e6e586e5855d81ee726bb9a0fbe8ab12def5eeef
2023-09-07 12:17:33 +02:00
jonny_jr9
e3460a06ae Merge branch 'dev' - 2 boards, uart, brake-relay 2023-09-06 10:24:42 +02:00
jonny_jr9
09c1921ab6 Update connection-plan: Fixes, Wiring-plan 2 boards
Adjust plan to actual built boards
Add complete wiring plan with brake resistor panel
Add cable optical sensor
2023-09-05 22:14:06 +02:00
jonny_jr9
66fc0cf4e9 Merge branch 'brake' into dev - brake relay support
brake-mode support
in BRAKE state relays are powered that connects a brake resistor
(not tested with actual motors)
Also brake mode is currently not used at all
2023-09-05 21:55:46 +02:00
jonny_jr9
57acaa0080 Disable brake-test 2023-09-05 21:51:43 +02:00
jonny_jr9
a88ddbe843 Update function-diagram: Add UART structs
add section where data sent with uart is planned
also add note that diagrams are outdated
2023-09-05 21:41:05 +02:00
jonny_jr9
8c7f05134c Fix Bug brake not working at all
BRAKE state was not possible with previous state
now IDLE is not forced when duty 0
Also adjust some logging
2023-09-05 09:46:53 +02:00
jonny_jr9
3014808d5a Add test for new brake feature
Repeatedly apply sequence of pre-defined motor commands in main function
2023-09-04 21:58:36 +02:00
jonny_jr9
fcecd930d3 Add brake-relay support to motordriver
[untested]
Turn on brake relays in BRAKE state
Also wait certain time for relays to switch before shorting the driver
Add config option for brake relay pin
Initialize pin in constructor
2023-09-04 21:51:15 +02:00
jonny_jr9
0a1f941de0 Update configs according to new pin assignment
current config of each board now matches pin assignment
2023-09-04 21:50:42 +02:00
jonny_jr9
8463329c60 Update configs according to new pin assignment
current config of each board now matches pin assignment
2023-09-04 08:43:20 +02:00
jonny_jr9
b6fb97277b Update connection-plan: brake resistor, 2 boards [soldered]
Add 2x brake relay
Add 2x optical sensor for speed measurement
-> not enough ports available!

-> Split pin assignment in two pcbs connected via UART
Note: just built and soldered both bords as currently described in connection plan
(old board replaced)
2023-09-04 08:23:51 +02:00
jonny_jr9
7df5bcaa2a Merge branch 'uart' into dev, uart implemented 2023-08-31 10:31:46 +02:00
jonny_jr9
d25f8cd381 Control: Rework button functionality - standalone
- re-enable button functionality
- make button independent of controlledmotor objects
- disable 2x eject support command
- disable 8x toggle fading command
2023-08-30 20:09:19 +02:00
jonny_jr9
455b6f0456 Control: Rework timeout to work standalone (untested)
rework and enable timeout feature to work independent of handledmotor
object now uses generated commands instead of acutal motor duty
not testet yet
2023-08-30 19:53:40 +02:00
jonny_jr9
446c246f43 Add message framing (start, end, escape bytes) to UART
Same functionality as previous commit. But way more stable and clean.
Previous proof of concept approach had issues with random partial or
too large messages due to time based method
Rework send and receive functions to work more stable
- send: encode data with frame (start, end byte)
- receive: read each byte one after the other, assemble message,
  handle actual data in handle function
- add semaphore to write operation to prevent parallel write of
  different data when called from other tasks
2023-08-30 18:17:20 +02:00
jonny_jr9
1e544613ee send, receive, apply motorCommands works (proof of concept); add timeout
- board_control successfully sends motor commands to board_motorctl
- board_motorctl receives and applies motor commands
note: control pcb currently switches to HTTP mode after startup for testing
with data from ui

- partially commented in code that has to be reworked
- control: send commands via uart instead of to motor objects
- board motorctl handled motor: add timeout when no target data
  received (e.g. control pcb offline / uart bugged)
- board motorctl uart: receive motorCommands_t struct and apply data to
  target state of handled motors
- types: fix issue with global motorstateStr variable
2023-08-30 09:01:44 +02:00
jonny_jr9
59a4f8c13f Fix broken http mode (crash at init)
revert changes from previous commit in dev
2023-08-30 09:01:31 +02:00
jonny_jr9
3722b0af74 Add uart templates, send and receive tasks with templates work
both boards compile and send/receive example data using new templates in
common uart code
common/uart_common.hpp
2023-08-30 09:01:31 +02:00
jonny_jr9
76e8bac113 2 boards: split code, outsource common, remove duplicate files
- outsoruce common files and separate common types from source files (new
  common/types.hpp)
- split source files to 2 board folders (relevant only, no duplicate)
- currently boards compile successfull but not functional at all
- comment out currently incompatible code
2023-08-30 09:01:13 +02:00
jonny_jr9
e6e586e585 Fix broken http mode (crash at init)
revert changes from previous commit
2023-08-30 08:56:51 +02:00
jonny_jr9
8ef71082dc Add uart test - send and receive struct works
board_control currently sends a scruct with incrementing values
board_motorctl receives the struct and logs it

also test code for sending, receiving and returning single value
2023-08-28 16:35:58 +02:00
jonny_jr9
b03baa4687 Change folder structure (multiple boards)
- add second pcb board_control, currently copy of previous board
- not enough pins -> board_control handle ui send motorcommands via uart
  board_motorctl handle motors
2023-08-28 11:15:06 +02:00
jonny_l480
224ac47214 Merge branch 'dev' - new wiring, currentlimit, deadtime, fixes 2023-08-22 11:21:25 +02:00
jonny_l480
884c00e3d9 Add deadTime support (time off between dir change)
add config option for minimum time motor has to be in IDLE before
changing direction. Try to prevent drivers from obvious extreme
overload. At least prevent full speed switch

Untested but simulated via log output
2023-08-22 11:16:37 +02:00
jonny_l480
4731f9253e Cleanup: comments, structure, warnings
went trough all current files:
- remove old comments
- change structure / newlines

- main.cpp: outsource loglevel function
- http.cpp: FIX compiler warnings

	currentsensor.hpp
2023-08-22 11:16:37 +02:00
jonny_l480
a6de6c4c10 Add currentsensor support - current limit functional
- add currentsensor class
- add current limit to motorctl handle function
- add config options for curring limit for each motor
- update connection plan with more detailed driver-box overview
2023-08-22 11:16:25 +02:00
jonny_l480
d51e8ae006 evaluatedSwitch: avoid random trigger (increase threshold)
- with new hardware noticed that sometimes switch gets triggered x1
  randomly when driving forward (EMI ?)
- increased delay options (less responsive but more controlled)
2023-08-21 09:49:05 +02:00
jonny_l480
3ba37baeda Optimize turning: allow duty=0 for inner wheel, prepare ratio snap threshold
- joystick command generation:
    - also remove min duty offset with changing ratio
- prepare threshold where ratio snaps to max for easier turning
  -> issue with driver has to be fixed first

- minor motordriver optimization / add commented out debug mode
  (driver forward in idle)
2023-08-21 09:47:48 +02:00
jonny_l480
d715f2e0f1 Fix bugged coordinate/radius scaling
- uncomment coordinate scaling which caused unwanted behaivor
    especially that radius never got to 1 when joystick diagonal
    resulting in loss of power/speed in curves
- now scaling radius only which is the desired functionality

- optimize debug logging
- fix joystick calibration config (invertion was mistaken)
2023-08-16 10:51:33 +02:00
jonny_l480
e017932db7 Adjust config: more fade, stick tolerance, less startDuty
turned out that higher voltage of new battery results in way more
responsive motors.
Adjust this with available settings (less shaking)
2023-08-15 23:14:44 +02:00
jonny_l480
be40a8c2d3 Rework fan control: single pin, more delay, config
- remove second fan instance since both fans are controlled via one pin
  now
- more config options so fans turn on less at short movements
  => less noise and less relay cycles
2023-08-15 19:39:37 +02:00
jonny_l480
3f73344b93 Update config with new pin assignment
- apply changed pins to config (according to new hardware configuration)
- calibrate joystick, more tolerance
2023-08-14 23:54:12 +02:00
jonny_l480
86638ff7c5 V2 - rework connection-plan: new pin assignment, wiring plan
Update connection plan with new wiring and pin assignment
  - add display
  - add temp sensors
  - single fan
  - add rotary encoder

Add wiring plan with details about hardware
2023-08-14 23:07:52 +02:00
jonny_l480
9550b387c9 Config: Replace abInverted with a- and bEnabledPinState
Changed config and code for motor driver:
Now its possible to configure whether a and b pins are inverted separately
e.g. a connected to mosfets (inverted) and b connected directly
2023-08-13 10:34:41 +02:00
jonny_l480
007b76b3a3 Merge branch 'dev' - auto/command mode 2023-08-04 19:16:17 +02:00
jonny_l480
73ad36bb2d Update joystick config, Add option JOYSTICK_LOG_IN_IDLE
- add more debug output in joystick getData function
- update joystick config with new min/max values while testing
    => fixed bugged movement (joystick unusable) after winter
- bump esp-idf version since successfully compiled with 4.4.4
2023-05-27 11:11:13 +02:00
jonny_l480
f0e1a7d883 Merge branch 'auto-mode' into dev - eject support feature
functionality for creating command sequenes,
currently only auto eject leg support implemented (1 short, 1 long press)
2023-05-26 12:39:05 +02:00
jonny_l480
06d6138917 Update Readme: http usage, Connection-plan: add Date
Readme
- add todo section
- add http usage

Add date to connection plan
2023-05-14 12:30:45 +02:00
jonny_ji7
7b1b985a15 Add longPressed case to button class, rework cmds
- slightly decrease msFadeDecel by 100ms

- different approach in button.cpp for case last button press was long
  e.g. reworked commands:
   - 1x long press = restart
   - 1x short press = center stick, freeze
   - 1x short 1x long = run new auto commands
   - 2x short = toggle idle

- change default minOnMs / minOffMs for evaulated switch class -> fix
  button presses sometimes not recognized
2022-08-11 15:15:55 +02:00
jonny_l480
0148f69fab Pass joystick object to button class
the joystick object is now available in the button class/task
thus can be used to trigger commands with certain combinations of
joystick and button
- not used yet -
2022-08-11 13:32:16 +02:00
jonny_l480
fb9e9ede25 Add working command instructions, optimize control
auto.cpp:
  - forward instructions from commands to newly passed pointer
control.cpp:
  - handle instructions returned at generation of commands in auto mode
  - add method toggleMode
  - remove dupliate code in toggleIdle method
button.cpp:
  - optimize command for enabling leg support, add instruction
2022-08-11 13:13:05 +02:00
jonny_l480
6dfae934d5 Fix stack overflow, apply and restore fading [functional]
auto.cpp:
  apply fadeAccel and fadeDecel from commands to motors

main.cpp:
  double stack size of button task (crashed controller every time)

button.cpp:
 Modify test command to actually eject armchair leg support

control.cpp:
  apply generated motor commands to motors

rename some variables:
 typo: fadeAccel
 more specific: auto_instruction_t
2022-08-11 11:21:29 +02:00
jonny_ji7
24d89b96cc Add example command, Improvements
- automaticArmchair:
  - add method addCommands for adding an array of
    commands to queue
  - add keys to simpleCommand struct
    - fadeDecel (not used yet)
    - fadeAcel (not used yet)
    - instructions (new enum for running other commands in control task
      , not used yet)

- button.cpp
  - add example command to 1x button press (comment out previous cmd
    temporarily)

- control.cpp
  - update changeMode function: dont do anything when current mode is
    already target mode
2022-08-11 09:30:07 +02:00
jonny_ji7
f8415655c2 Create class 'automatedArmchair', Add AUTO mode
- Create class automatedArmchair in new files auto.hpp and auto.cpp
  This class currently makes it possible to queue up and run commands
  (motorstate, duty for certaion duration),

- add new file to cmakelists
- create automatedArmchair instance 'armchair' in config.cpp
- add loglevel configuration to main.cpp
- add AUTO mode to control.cpp (no way to change to mode yet)
2022-08-10 22:01:50 +02:00
jonny_ji7
78f14ca499 Merge branch 'dev' 2022-08-10 08:50:20 +02:00
jonny_ji7
66756b9b75 Fix bug: massage stick freeze not resetting
When switching mode from MASSAGE to other mode while joystick input
frozen (button). It was still frozen when switching back to MASSAGE mode
later. This is confusing and is seen as a bug

-> reset locked input variable to false on mode change
2022-07-28 17:54:44 +02:00
jonny_ji7
bbe26a3823 Add button cmd x12: alternative joystick mapping
New command and feature also made some  general changes to control and button necessary

joystick.cpp:
  - add optional parameter to joystick_CommandsDriving function
    bool altStickMapping (default false)
    if true this currently swaps BOTTOM_LEFT with BOTTOM_RIGHT for experimental
    different joystick mapping

button.cpp:
  - fix/move variable declaration outside of switch
  - add 12x case: send count to control task

control.cpp:
  - create new section in handle loop for button events
  - move x1 commands from JOYSTICK and MASSAGE case to new button
    section
  - remove unnecessary variable buttonEvent (only using buttonCount now)
  - add functionality to 12x button event -> toggle alternative stick
    mapping

readme.md:
  - add new x12 button command
2022-07-26 09:53:37 +02:00