219 Commits

Author SHA1 Message Date
jonny_l480
25cc72c5e6 Optimize encoder-rest control, Invert back-rest direction
Less unintended menu jumping when controlling rest
Less ignored ticks when recently used
2024-09-08 12:23:13 +02:00
jonny_l480
1559b0abdf Merge branch 'pcb' into chairAdjust - pcb installed, success 2024-09-08 11:06:47 +02:00
jonny_l480
b2702b112a Finalize schematic, Add pcb to README 2024-09-08 11:05:37 +02:00
jonny
37ccb496e0 pcb: add 3d-model, exports 2024-09-08 09:59:32 +02:00
jonny
c13006241e Move mode specific delay outside mutex + logging (control.cpp)
potentially fix rare deadlock assuming handle loop takes mutex too fast
again so changeMode never takes it
2024-09-08 09:25:32 +02:00
jonny_l480
5249ac64e0 Adjust config for new custom relay-pcb 2024-09-07 16:45:39 +02:00
jonny
e43f872f11 pcb: remove gnd tracks, export, generate gcode 2024-09-07 09:06:36 +02:00
jonny
f1548c1fa7 pcb: Add kicad project chairAdjust-relayBoard (pre-milling) 2024-09-07 08:51:57 +02:00
jonny_l480
c48b162d1f Add logging, mutex + Fixes - works well with MIN-On/Off time now 2024-09-06 15:27:09 +02:00
jonny
89cab00acc Rework cControlledRest (for MIN_TIME_ON, MIN_TIME_OFF)
- split up in more simple methods
- clearer structure
2024-09-06 11:05:31 +02:00
jonny
e23d37df4c Add mutex to chairAdjust object - fix potential crashes 2024-09-05 13:21:46 +02:00
jonny_l480
c19d053867 Minor fixes + optimizations - test success 2024-09-05 10:47:37 +02:00
jonny
946fdd6c15 Add task for each rest, sleep/wakeup task only when running 2024-09-05 09:23:22 +02:00
jonny
71460bbf87 Button: ignore first ticks, prevent long press when PRESS+ROTATE 2024-09-05 09:22:40 +02:00
jonny
23cf6e6f3e Add Display-notification, default position, Push+scroll 2024-09-04 23:04:54 +02:00
jonny_l480
43cc3ce3e0 Fix position tracking, stick mode - test success 2024-09-04 20:08:28 +02:00
jonny
2a2678b734 Add chairAdjust task, pos tracking, move with encoder 2024-09-04 18:27:24 +02:00
jonny_l480
70df86f70c Adjust: start working on tracking position 2024-09-04 16:19:40 +02:00
jonny_l480
ff98d3f5eb Change status-screen-scroll to require 2 clicks
to prevent confusion, made it harder to switch page
accidentially and easier to return to overview

- 2 rotate-clicks necessary for status page to switch
- if only one received within timeout it gets switched to default screen
2024-08-31 20:19:11 +02:00
jonny_l480
a2b67c1a40 Add support for non-idle default mode, Set startup mode ADJUST 2024-08-31 20:13:03 +02:00
jonny_l480
fd1189bb2f Refactor README.md 2024-06-03 20:16:06 +02:00
jonny_l480
f755d3775b Merge branch 'dev' - brake, mode-sel menu, massage, status-screen scroll
Armchair works reliably with the mentioned new features and fixed
massage mode
2024-06-03 15:19:33 +02:00
jonny_l480
0695c92418 Merge branch 'display' into dev - mode-select menu, massage-mode, scroll status-screen 2024-06-02 09:20:56 +02:00
jonny_l480
34c25cb38c Update README: Add photo, mode-select menu 2024-06-02 09:16:00 +02:00
jonny_l480
32b31b481d Fix setFade, Make MASSAGE-mode work again (pre-rework)
MASSAGE mode is now useable again for now.
(no more random driving and unexpected shaking)
A full rework is still planned.

- Fix setFade method (did not change anything when not writing to nvs)

- joystick/massage:
    - reverse motor direction every 2nd cycle to preving driving
    - simplify modes (now only FW/REV and LEFT/RIGHT)
    - use joystick angle to vary the duty cycle
    - optimize delay and duty calculation (min max config)
    - drop hysteresis (not much use, just much code)
2024-06-01 17:59:29 +02:00
jonny_l480
5fe970f60b Fix decel massage, Fix bugged pixels (clear), Less Fan
- fix deceleration being overwritten in nvs at massage mode change (as accel before)
- handle deadlock when handle-loop does not give back mutex (rare but had that once -> restart)

- clear display when changing to mode-select
- clear display when switching status page

- adjust fan time (less on)
- slightly adjust accel/decel/max duty (needs testing)
2024-05-31 09:22:02 +02:00
jonny_l480
c738ac96b1 Fix MASSAGE-mode messing up acceleration config
- do not update nvs with low accel when changing to massage
- store and restore previous value when changing from/to massage mode
2024-05-30 09:33:53 +02:00
jonny_l480
b1c010bf15 Fix menu immediately exiting, Optimize mode-select
Tested newly implemented menu on armchair and made several Fixes:

- reduce long delay when changing to menu modes (control handle)
- add unused line to mode select menu, also drop "click to confirm"
- fix and optimize getNextSelectableModeIndex function to get n next (recursive, offset)

- button: clear encoder queue before changing to menu mode
- fix menu immediately exiting on x5 press (missing break)
2024-05-30 09:05:29 +02:00
jonny
c58c6b9b35 Add Mode-Select-Menu (1x long), (settings is 5x now)
General:
    - Rename control mode MENU to MENU_SETTINGS
    - Add new control mode MENU_MODE_SELECT

Button menu:
    - change 'long press' to: 'switch to menu mode-select'
    - move 'open settings menu' to 5x press

Display:
    - display_task: outsource statusScreen to local function
    - display_task: also handle MENU_MODE_SELECT control mode
    - show display startup message for 2600ms instead of 2000ms

Menu:
    - Add functions to handle modeSelect menu to select from a list of allowed modes
    (similar to settings main menu)
2024-05-28 21:20:20 +02:00
jonny
f94630711b Merge branch 'driving-behavior' into dev - brake works 2024-05-24 23:40:27 +02:00
jonny_l480
bff6175fb0 Button: Scroll through status screens with rotating encoder
In any mode except MENU the encoder rotateion selects status screens

Add functions to rotate through available status screens
Aandle rotate encoder event in button menu
2024-05-20 17:00:46 +02:00
jonny_l480
a839d61f65 Add menu item to set brake-deceleration
Also simplify motorctl by removing two variables
and using config struct instead
2024-05-20 09:08:10 +02:00
jonny_l480
3ebcd6ad3c Rework brake (decel-boost): simplify, config option
Briefly tested this - brake works as intended

- Add config options brakeDecel and brakePauseBefureResume
- control: update brakeStartThresholdDuty at startup
    and maxDuty change for each motor
- motorctl: drop/simplify decel boost to brake
    (faster deceleration at certain threshold)
2024-05-18 23:32:52 +02:00
jonny_l480
967f2cd8b5 Fix dynamic 'decel-boost' - proof of concept works
When moving the joystick in other direction than driving
the deceleration gets speed up.
The boost scales with how far the stick is in other
direction up to a maximum
Some issues with this approach see notes in code
2024-05-15 18:42:49 +02:00
jonny
fa114e4138 Add 'decel-boost' when reversing joystick (motorctl)
when moving the joystick in opposite direction the
deceleration gets boosted depending on how large
the opposite target duty is up to a maximum

Needs testing, switching between ROTATE mode might
cause issues
2024-05-12 16:52:44 +02:00
jonny
e5fad27899 Merge branch 'dev'- turn-behaivor, exp motor-ctl-modes, screensaver [WIP]
- boost when turning significantly improved driving experience
- display screensaver (timeouts, moving text, brightness)
- bugfixes
- different approach in motorctl implementing different control modes (needs testing)

Stable to use for now, but still WIP due to some bugs
needs optimizations and issues to be fixed before release
2024-03-26 16:41:34 +01:00
jonny
a65f6205f6 Merge branch 'driving-behavior' into dev - turning, experimental ctl-modes 2024-03-26 16:36:47 +01:00
jonny_l480
b9eb40538d Fix unexpected movement in MASSAGE mode
Revert change where massage commands were only generated at
joystick change, since it has to be handled
frequently in any case for motors to actually stop after certain time.

Not tested yet
2024-03-18 21:17:00 +01:00
jonny
c1d34237ee Fix unintended encoder doubleclick, Reduce long-press time
sdkconfig:
- increase encoder dead-time to fix bug where encoder triggered multiple
  short pressed events at one press.
  E.g. instantly submitted value when entering a menu page sometimes

button:
- decrease input-timeout (long press time) to 500ms same as encoder long-press
- empty encoder queue when changing to MENU

- re-enable or increase joystick scaling to have more resolution at
  slower speeds
2024-03-11 23:45:44 +01:00
jonny
a5544adeb6 Fix race condition causing bug: motors stay on after mode-change
Add mutex to fix bug motors stay on when mode-change while driving
due to race condition when handle() still executing while mode change

Change joystick scaling parameters

control:
    - add mutex to handle() and changemode() to prevent race condition
    - outsource handle() method from createHandleLoop()
    - change joystick scaling (reduce 'more detail in slower area')
    - comments, formatting
2024-03-06 11:59:39 +01:00
jonny_l480
a6a630af44 Add boost outer tire, Add ratio-threshold, Fix motorctl timeout
Rework joystick command generation
Fix timeout no commands received in motorctl

Successfully tested this state on actual hardware:
turning behavior is significantly improved - does not get slower when turning anymore

joystick:
    - add boost of inner tire when turning
    - add threshold where ratio snaps to 1
    - optimize structure, logging

control:
    - rename maxDuty to maxDutyStraight to be more clear
    - add methods to change and get new variable RelativeBoostPer for menu item

menu:
    - add new item to set maxRelativeBoost config parameter

motorctl:
    - fix timeout not working:
    previously when not receiving commands for 15s the duty was set to 0 for 1 handle cycle only
2024-03-05 23:59:12 +01:00
jonny_l480
179c608638 Merge branch 'dev' into driving-behavior 2024-03-04 13:24:46 +01:00
jonny
77ba81e996 WiFi on in HTTP-mode only, Add batt-threshold to timeout
As initially planned starting wifi only when needed, at change to HTTP mode.
Tested this on breakout board: ESP32 is not getting hot anymore!

Also optimized timeout: only notify "forgot to turn off" when battery is below certain
threshold (e.g. disable when charger is connected over night)

main:
    - dont start wifi at startup anymore
    - remove double-initialization of nvs
      already initialized in wifi.c, thus removed some code
    - optimize comments, logging

control:
    - timeout "forgot to turn off": Add battery threshold
    - start/stop wifi when switching to/from HTTP mode

wifi:
    - split init function to separate functions for NVS and NETIF (more clear in main)
    - optimize log output at nvs init (moved from main)
    - rename start/stop functions, formatting
2024-03-03 22:04:27 +01:00
jonny
fbae02b328 Add software-scrolling to Screensaver
Compared to the white-text display used for testing,
the actually used blue-text display does not support
hardware-scrolling (the text was just static)

display:
    - Add code that continously scrolls screensaver text 1 character
      to the right and wraps the truncating part to the start
    - Add option to enable/disable hardware-scrolling if available
2024-03-03 11:53:19 +01:00
jonny
3514dd6bf2 Add Brightness reduction at inactive, Optimize timeout
display.cpp:
    - add timeout where display brightness gets reduced
    - rework display-task loop to handle timeouts
    - run commands when changing from/to status-page (toggle scrolling)
    - add BRIGHTNESS_TEST option

config: Add display timeouts to config.cpp

control:
    - dont reset timeout at mode change (happens not always at user input)
    - remove deprecated config option
2024-03-02 13:06:55 +01:00
jonny_l480
0d082a52d8 Add Screensaver, Fix timeout
Add screensaver status screen to prevent oled burn-in:
  Display task switches to screensaver status-screen
  when certain time of inactivity is exceeded
2024-03-01 23:59:00 +01:00
jonny
bc9504d4ab Add Timeout / Notification on "forgot to turn off"
control:
    - reset timeout on user input only
        -> drop reset on changed motor duty
    - add timeoutNotifyPowerStillOnMs
        -> when forgotten to turn off the power the buzzer
           beeps a few times every 30 minutes
    - Add/fix JOYSTICK_LOG_IN_IDLE option

remove empty config.hpp
2024-03-01 13:55:51 +01:00
jonny
3aa6bcc403 Adjust button commands (dont toggle modes)
Adjust button actions to match the current README
2024-02-29 23:50:12 +01:00
jonny_l480
5d1d17915d make control-modes and TCS work [proof of concept]
Tested new control modes on actual hardware.
Adjust new code so the modes kind of work now, as proof of concept.
Still needs major optimization and fixes though.

motorctl:
    - add config option to disable logging for particular instance
    - add some definitions to finetune control modes
    - rework current and speed mode, so they actually kind of work
    - fix TCS to not cause deadlock motors off

menu:
    - add item set motorControlMode (select DUTY, CURRENT, SPEED)
    - fix missing item maxDuty

speedsensor: fix return type
2024-02-28 23:00:38 +01:00
jonny_jr9
2abeefde07 Add Duty, Current, Speed control modes, Add traction-control [testing]
very experimental needs testing/debugging,
other control modes can currently be selected by editing the class definition in motorctl.hpp

menu/config
  - add menu item to enable/disable traction control system

main: pass ptr to other motor to motor object

speedsensor: add method to get last update time

motorctl: handle loop:
  - re-arrange some code sections
  - add several methods to get current status (needed from other motor for tcs)
  - add sketchy code for different control modes DUTY, CURRENT, SPEED (very basic implementation)
  - add experimental code for traction control
2024-02-28 10:21:53 +01:00