186 Commits

Author SHA1 Message Date
jonny_jr9
573f0779fe Merge branch 'dev' into encoder
Continue working on encoder, get latest version
2024-02-12 13:04:14 +01:00
jonny_jr9
af01bdecd8 Merge branch 'chairAdjust' into dev - chairAdjust implemented
Now you can switch to mode ADJUST_CHAIR via 1x short, 1x long button
press and control the armchair rests with the joystick.

Untested, due to hardware (relays) not installed yet
2024-02-12 12:42:57 +01:00
jonny_jr9
a1bb808b62 Rework/simplify chairAdjust - now using a class
- complete rework of chairAdjust.cpp/.hpp
  created a class cControlledRest which is more readable
  and saves a lot of duplicate code

- joystick.cpp: move chair control via joystick to
  chairAdjust.cpp (prevents dependency loop)
- button.cpp: fix bug instant idle when changing to ADJUST_CHAIR

Note: briefly tested this state on a breakout board:
Mode change and call of new class methods works.
2024-02-11 23:22:33 +01:00
jonny_jr9
384b732532 Update connection-plan: Add chairAdjust relays
Add new PS2 connector and pin assignment for 4 relays controlling the
chair adjustment
2023-10-25 23:03:14 +02:00
jonny_jr9
30e9411a2e Add GPIO initialization, logging 2023-10-11 20:02:02 +02:00
jonny_jr9
95f2403163 Add control mode 'ADJUST_CHAIR' (btn 1 short, 1 long)
Add functional mode to control chair position via joystick
Switch to that mode using button 1x short 1x long (prev eject support)
2023-10-08 14:56:19 +02:00
jonny_jr9
9dfe1bddb2 Add chairAdjust driver, Add joystick control
- Add functions that control the relays for adjusting the armchair
  position
- Add function that controls the chair using joystick input
2023-10-08 14:19:04 +02:00
jonny_jr9
96d627c217 Update README
minor changes
2023-09-27 14:53:29 +02:00
jonny_jr9
a344b7f4c8 Merge branch 'dev' - 1 board, speed, display, sabertooth 2023-09-27 09:45:54 +02:00
jonny_jr9
7c29c1c8bd Update connection-plan, function-diagram
function-diagram: add joystick mapping
connection-plan: add wiring plan for 2.2, fixes to all versions
currently released on pfusch.zone v1.5.0
2023-09-27 09:34:32 +02:00
jonny_jr9
81b073bbd9 Fix regular Crash (stack overflow display task)
Fix regular crash caused by display task
2023-09-27 09:32:01 +02:00
jonny_l480
bf3adea17d Config: Update accel and decel to tested values 2023-09-15 18:09:45 +02:00
jonny_jr9
b6fd16eb2a Patch V2.1-board-motorctl to work with new common code
Changes to outsourced motorctl code made configuration
of currently unused board-motorctl from V2.1 incompatible
-> patch config
2023-09-13 15:38:40 +02:00
jonny_jr9
169c809870 Add doc folder, Update gitignore, Add sdkconfigs 2023-09-13 13:59:30 +02:00
jonny_jr9
0037f4a836 Fix bug right motor always on; Optimize comments
Bug was fixed in previous commit already
Only changed code slightly (better readable) work with duty instead of data

Optimize comments in motordriver
2023-09-13 13:49:52 +02:00
jonny_jr9
5f54681bbf Sabertooth: Add uart-mutex; Add both-off serial command
- add mutex around mutex send instruction
- add minimum delay between sent messages
- detect situation where both motors are off and send special both motor
  stop command. This might fix issue "right motor stay always on"
2023-09-13 12:15:35 +02:00
jonny_jr9
16232e3194 Merge branch 'display' into dev - display works 2023-09-13 08:19:50 +02:00
jonny_l480
69a421a924 Outsource speedsensor, Display: show speed
- move speedsensor files from motorctl pcb to common
- single pcb create and configure global speedsensor objects
- display: create fast slow veryslow loop
  - clear display every 30s
  - show speed in rpm and km/h
  NOTE: speedsensor needs fix, direction unreliable
2023-09-12 16:00:20 +02:00
jonny_l480
364172f69c Merge branch 'measure-speed' into display 2023-09-12 11:59:57 +02:00
jonny_jr9
47d7e9f3a4 Rework display: separate task, add battery percent
slightly rework hacked display test
- new code structure
- split code in several functions
- add task for display instead of running it in main()
- functions to convert voltage to battery percent charged
- show percentage and voltage on display
2023-09-12 11:49:08 +02:00
jonny_l480
548b5b8d51 Hotfix: swap joystick X/Y pins, log 5V regulator start
jsut re-wired the pcb.
apparently joystick was wired wrong previously
2023-09-11 21:24:38 +02:00
jonny_l480
d9deddf923 Display: show battery voltage, Button longPress=calibrate 2023-09-09 18:03:54 +02:00
jonny_jr9
0804aaf240 Add display library, show battery voltage
untested
2023-09-09 16:51:01 +02:00
jonny_l480
3449bb7f34 Config optimizations (Test-drive)
Successfull test drive with new driver
- set max duty from 90 to 100
- config adjust fading, calibrate joystick, disable deadtime
- disable 1x button cmd
- 8x sport mode: toggle accel not decel
2023-09-09 16:10:18 +02:00
jonny_jr9
27a94d7ab6 Update connection-plan: single-pcb, update pin assignment
update config to work with actual pin assignment in connection plan
2023-09-09 09:38:54 +02:00
jonny_jr9
8e0441b27c Fix stack-overflow, Adjust logging, test-ready
enable all tasks in main for full function test with new driver
2023-09-09 09:38:42 +02:00
jonny_jr9
71b63ebbd3 Make drivers interchangeable, Switch to sabertooth driver
- make motorctl compatible with different drivers
    - pass set function instead of specific motor object
    - add lambda function in config.cpp
- update config to use one new sabertooth driver instead of two single100a
- main test controlled motor
2023-09-08 12:09:52 +02:00
jonny_jr9
98956e2bf8 Create class sabertooth2x60a - new driver functional
currently repeatedly sends test commands from main using a created
instance of that new class
2023-09-07 16:37:14 +02:00
jonny_jr9
a30ec01818 Simple driver test - works
test controlling driver via uart (in main function)
2023-09-07 14:02:48 +02:00
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
a3257e89ee Add speedSensor class - functional
successfully read rotational speed and direction using encoder disk and
optical sensor
custom implementation of incremental encoder using gpio edge interrupt
2023-09-06 21:15:44 +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
881f0827d2 Add encoder lib; Custom task, init - functional
currently handles encoder connected to pins configured in encoder.hpp
and receives and logs all available events in encoder task
Works as expected

TODO: migrate with previous implementation of commands in button.cpp
2023-08-31 12:22:13 +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