113 Commits

Author SHA1 Message Date
jonny_l480
4c149a7743 Adjust parameters cable-guide
Adjust some parameters while testing cable guide with new Reel V2.2.2
Guides quite well with current setup, calculated diameter (layer heights)
matches quite good now
2024-03-09 22:26:26 +01:00
jonny
e65350f643 Add layer-count, variable diameter, Optimize comments
guide-stepper:
    - Add layer count when reversing axis
    - Adjust steps calculation considering (add layers to reel-dia)
    - optimize comments
control: optimize comments
main: optimize comments
2024-03-09 13:50:45 +01:00
jonny
989f9cce13 Fix Bug 'weird axis movement at reset'
- guide-stepper:
    - add queue to send commands to stepper-ctl task
    - add function that tells stepper task to move to zero
    - increase travel length full axis length 110

- control: move guide to zero at reset

- Cmake: enable colored output
2024-03-08 17:02:54 +01:00
jonny_l480
c42f5d5d7a CAD: Update reel v2.2 (printed)
- slight adjustments to parameters
-> printed this version in PETG
2023-12-11 20:01:54 +01:00
jonny_jr9
59707b5cf4 CAD: Add reel_v2.2 with interlocking counter-part
- Add new version of cable reel with second counter-part
  to prevent cable from falling off at long lengths
- Also update axis-mounts (modified some time ago)
2023-11-29 22:56:34 +01:00
jonny_l480
e2749cf2b9 Adjust travel length (max with current reel)
increase and test machine using max length possible with current reel
and "counter reel"
Worked quite well, see video made
2023-05-01 10:07:43 +02:00
jonny_l480
d206b53194 Stepper driver: Add overshoot
- prevent hard stops (no decel ramp) when target changes while
  decelerating already (overshoot and move back)

- optimize/adjust stepper-test mode, add macro for test with single switch

Note: tested the current state, works quite well. very rarely crashes
probably dude to race conditions in isr?
2023-04-28 12:41:06 +02:00
jonny_l480
f8b9e6c862 Add waitForStop func, wait at direction change
- Add waitForStop function to custom stepper driver
- use that function in guide-stepper to ensure stepper actually was at
  max/min position before dir change
2023-04-28 09:36:04 +02:00
jonny_ji7
17d8db2193 Add 'stepper_home' function, disable testing mode
- Add function stepper_home
- disable STEPPER_TESTING and STEPPER_SIMULATE_ENCODER for normal
  for testing in operation
2023-04-26 21:56:25 +02:00
jonny_ji7
9cae5cf75d Move stepper-cfg to config.h, Rework guide-stepper.cpp (new driver)
- move stepper config e.g. speed accel steps... from stepper.cpp to
config.h

- uncomment and rework code in guide-stepper.cpp (for traveling the
  stepper based on encoder) to work with new custom driver instead of
  previous library

Note currently in STEPPER_SIMULATE_ECNODER mode (use button as encoder),
see macro
2023-04-26 17:46:06 +02:00
jonny_ji7
a22c60b817 Merge branch 'stepper_custom-driver' into dev
custom stepper driver successfully implemented,
will be used and continued in the further development
in dev branch
2023-04-25 19:30:26 +02:00
jonny_ji7
7eab4f8a8e Revert 8 commits (approach with stepper lib dropped)
Undo all custom changes to the DendoStepper library, since it will not
be used further. Custom implementation will be used in the future
(stepper_custom-driver branch)

Revert 279ac0e07e7578a86a6d13908e472bd4f379a62a
Revert 1c59e0097b3732d9b035881faa442349c50d4341
Revert 5d7c67ab9a2327adc49ea92cd55f9aa23a40b065
Revert 8d2428d28576e08da07af79659620376b1e4e964
Revert dc6deeb3d09628ac7f4f4fab256dc168bcbf835a
Revert 0a05340763c26be4735d1cf845b96150112b25ad
Revert 45409676a0b502c69b5bc26be7361bfa5a89ed61
Revert de42b6252ebec3558713cd39334548041654545f
2023-04-25 19:16:38 +02:00
jonny_ji7
3488281502 Disable debug output, Remove impl. without timer
disable debug task
remove software implementation of stepper control
2023-04-25 19:04:36 +02:00
jonny_ji7
e8e1070bd1 Simplify code, Add actual units: TargetPosMm, SpeedMm
- add functions
    setSpeed (mm/s)
    setTargetPosMm

- add macros and function to define and convert variables to actual units
    speed in mm/s instead of unknown
    abs pos in mm instead of steps

- simplyfy isr code
2023-04-25 17:15:09 +02:00
jonny_ji7
63f0da25f1 Fix isr-function (fully functional now), Add task for debug output
new driver works well while testing with one button with debug output
- small changes to isr function that made it fully functional!
- add stepper debug task
- minor optimizations necessary
2023-04-25 14:35:07 +02:00
jonny_l480
c99e71846c Remove unused code, potential bugfix
remove commented out code and unused code from previous approach
addition al check that might fix issue with underflow
2023-04-25 11:39:59 +02:00
jonny_ji7
61deaf9ead New implementation with timer, partial functional (WIP)
Partially implemented stepper driver as planned in diagram
works partially (reset button toggles distances)
major issues though - wip
needs debugging and testing
2023-04-24 23:14:39 +02:00
jonny_l480
b6a7ee65ed Add stepper ISR func to function-diagram (WIP)
add diagram page with current idea for custom stepper driver
that handles acceleration, deceleration and dynamic changes
2023-04-23 11:08:55 +02:00
jonny_l480
1e2fa1db8f Add basic control task without timer (works, but dropped)
basic task for controlling the stepper
(no accel / decel etc)
works at current speed settings but long moves trigger watchdog
so dropped this idea and using timer as before
2023-04-22 20:47:39 +02:00
jonny_l480
7bde75806c Fixes, Works but crashes when finished accelerating
Some adjustments to make it work
    - fix direction change (temporary)
    - fix isr initial start
See notes in stepper.cpp
Todo:
    - fix crash after accelerating
    - add initial speed (takes long to accelerate from 0
    -
2023-04-11 10:35:05 +02:00
jonny_l480
1d53d3467c Stepper driver from scratch, test with buttons - WIP
- Add stepper driver code from scratch
- Remove / comment out code that used DendoStepper library
- Test custom driver with buttons (guide-stepper.cpp)

untested limited features
2023-04-10 22:28:18 +02:00
jonny_l480
279ac0e07e Add more debug output ISSUES
- Add debug output in calc
- disable test mode for testing with encoder
- set loglevel to DEBUG

extend feature currently only works well in testing mode with buttons
issues when running with encoder:
 movement gets extended extremely often due to encoder travel
 interval and rarely does reach target - compared to trigger with
 buttons
 -> while debugging noticed that the current speed gets negative
 and the xISR gets stuck so moves infinitely or not at all

 ideas:
 - rounding issue?
 - SPEED increment also has to be adjusted or set to 0 as step
   increment?
2023-03-26 11:41:46 +02:00
jonny_l480
1c59e0097b Fix feature: extend movement works now! (test mode)
while currently in stepper test mode the extend feature works as
intended now.
you can trigger movement using the buttons and repeating
presses while still moving (coast, accel or decel) extends the movement
without stopping or accelerating again.

Note reversing the direction while still moving is not handled and results
in immediate direction change and distance that makes no sense.

also added alot of debug output and switched to debug level
2023-03-24 15:05:36 +01:00
jonny_l480
5d7c67ab9a stepper-test: Control stepper with buttons
now the stepper test task controls the stepper using button input
this makes debugging modifications to stepper library easier
2023-03-24 13:22:22 +01:00
jonny_l480
8d2428d285 Stepper: Add calc debug output ISSUES
- sometimes deadlock at direction change
    waits for idle state in runAbs
    function, but stepper is not really moving anymore  ISR does not change
    to idle or state changed afterwards?
- every EXTEND operation results in a motor stop thus when extending
    alot is stopped only ramping up and down
    when encoder stop after several extend attempts
    the stepper moves all the remaining steps successfully
2023-03-13 20:25:10 +01:00
jonny_ji7
dc6deeb3d0 Stepper: rework resume functionality 2023-03-13 20:02:22 +01:00
jonny_l480
0a05340763 revert mutex, fix state reset, logging, slower
stepsRemaining not necessary in ISR
comment out forced stop at runAbs
statusPrev not needed
TODO: ISR defines state every time, no need to adjust manually while running
adjust calc function to handle remaining steps

Test: broken - slow moves mork but when "extending" movement it just
vibrates
2023-03-13 18:26:50 +01:00
jonny_ji7
45409676a0 Stepper: add mutex, logging, delay, less steps
When testing last commit the stepper task crashed almost instantly and
moved randomly. Trying to fix/debug that with those changes
2023-03-13 11:12:42 +01:00
jonny_ji7
de42b6252e Stepper: Add resume/update functionality (WIP)
add way to extend current move operation without having to wait for IDLE
state (full decel time)
2023-03-12 13:06:30 +01:00
jonny_ji7
a0032ea07f Add C-project for simulating axis in commandline
before adding the travelMm function the algorithm for moving the
axis between left and right was designed and evaluated via commandline
first.

-> Add this test-code in this commit
2023-03-02 23:35:24 +01:00
jonny_ji7
9595940004 Merge branch 'dev' into stepper
Hardware works so far
Firmware needs improvement: stepper moves but too jerky also not linked
to control task yet
2023-03-02 23:32:18 +01:00
jonny_ji7
423348be9f Add filter-pcb for denoising stepper signals
When the VFD was running the stepper driver did not work correctly.
The especially the DIR signal got unusable and triggered randomly.

Add custom stripboard that reduces the noise on DIR and PULSE data
lines.
The circuit simply increases the current in the data lines significantly
and crops the voltage to 0-5V using a zener diode.
While testing with an oscilloscope the circuit seems effective.

- add kicad schematic
- add spreadsheet with stripboard layout
- update connection: plan with stripboard, update changed 5V connection
2023-03-02 23:12:52 +01:00
jonny_l480
6c9b1b6fcf Fix rounding, Rework step-calc, Tested
- decrease home speed
- invert direction in stepper test and home function due to changed
  wiring
- stretch travel steps calculation to multiple steps and variables for
  better overview and debugging
- prevent partial steps from being lost -> fixes rounding issue

TESTED: works in general, but steper movement is too jerky. Also there
is a Hardware issue: When VFD/motor is on the steper does not work
properly -> 50ohm pullup near stepper driver fixed this
2023-03-01 18:55:26 +01:00
jonny_l480
4edd1780ea Change max loglevel to VERBOSE 2023-03-01 18:12:55 +01:00
jonny_l480
28889bd912 Swap VFD and Stepper pin, Swap Encoder connection
- update config and connection plan
- swap B+ and B- of encoder to invert the rotational direction,
  so the direction in code make more sense
- swap VFD and stepper pin. For some reason stepper did not work with
  dir pin on mos2. Maybe pulse affected dir pin, try again with denoise
  pcb
2023-03-01 18:08:14 +01:00
jonny_ji7
226aa4794c Switch to and Add travelSteps beside travelMm (WIP)
- optimize some variable and macro names
- change/add function that travels guide certain steps
- stepper task: - calculate steps depending on encoder steps
                - move steps if at least 1 step possible
- prepare poti modifier

-> untested
2023-03-01 12:56:24 +01:00
jonny_ji7
118e9714b5 Add Stepper to connection-plan, Add datasheets
- Add datasheets of VFD and stepper driver
- Change pins in config for stepper driver
    - DISABLED LAMP (pin now used for stepper)
- update connection plan with stepper section and wiring
2023-03-01 08:35:19 +01:00
jonny_ji7
ac4ca5450a Fix variable scopes (static), Simplify encoder
- add static type to all local variables in every source file
  so the scope of each variable is limited to that file.
  This prevents conflicting variable names with other source file
  (e.g. 'state' variable in vfd.cpp)

- simplify encoder concept
  wrap all used functions from rotary_encoder.h library in
  custom encoder.hpp file
   -> only one file has to be included where encoder is used
   -> global variable 'encoder' is not necessary anymore
   -> reduces duplicate code for length calculation
- update all files where encoder functions where used accordingly
2023-03-01 01:00:16 +01:00
jonny_ji7
5dd392586d Outsource encoder code to encoder.cpp
To be able to use the encoder in future stepper task as well
- make certain variables global
- initialize encoder in main
- outsorce encoder functions in encoder.cpp / h
- adjust config
2023-03-01 00:09:29 +01:00
jonny_ji7
74adcbc78a Adjust test-params, CAD: enforce axis-mount
While testing the setup
Optimizations of problems noticed while testing the setup:
    - mount too weak
    - only very slow speeds relevant
    - less distance required
2023-02-27 11:38:37 +01:00
jonny_ji7
06ebb1fbc6 Fix include order for compatibility
including the files in source file instead of header file fixed
'conflicting type' errors in idf macros when using newer version
ESP-IDF v4.4.4-148-g4c2afac355
2023-02-22 17:23:37 +01:00
jonny_ji7
3d4f327832 Add cad file (axis mounts)
This file currently contains
  - crude model of linear-axis
  - angled bracket for mounting the axis to item
  - 2 versions of interface between rolls and axis
  - rolls
2023-02-21 21:36:59 +01:00
jonny_ji7
58c5a92d1e Add functional STEPPER_TEST feature
- add macro variable STEPPER_TEST (config.hpp)
    if set: only `task_stepper-test` is started (main.cpp)
- add file for stepper/guide related code (guide-stepper.cpp/hpp)
    currently defines a task that simply moves the axis left to right
    repeatedly with a speed defined by a potentiometer connected to ADC
    GPIO34
2023-02-21 21:27:33 +01:00
jonny_ji7
2651a83ce7 Add stepper library for esp-idf 2023-02-21 21:14:16 +01:00
jonny_ji7
ef0ac39c9b Update diagram pdf files, cad files (guides)
- update / export pdf version from current drawio connection-plan and
  function-diagram
- update cad files
V2.0
2022-10-13 14:01:19 +02:00
jonny_l480
ad2ce8c33b Adjust speed thresholds, increase custom length range
Update speed thresholds to slow down earlier
Increase custom length range from 30 to 50m
2022-10-11 11:48:54 +02:00
jonny_ji7
8f5b33c554 Add LENGTH_OFFSET and REACHED_TOLERANCE options
Add feature and config option #define TARGET_LENGTH_OFFSET
that makes it possible to set a distance that gets added to the target
length, thus preventing falling short on the actual length when spools
rotates back slightly after stop.

Also move reached tolerance to config.
2022-09-30 13:14:48 +02:00
jonny_ji7
592351c265 Add CAD-files, wire-labels, docs/datasheets
Add add cad files of all designed and 3d-printed parts.
Mostly Freecad and a few older SolidEdge files (_SE)

Add wire-labels.fods containing the printed labels for wires in
control-box and switching cabinet

Add docs folder with relevant images and datasheets of the used components
2022-09-29 19:39:56 +02:00
jonny_ji7
d473bf6b8c Add autoCut-cancel with any button; Fix display init
- Pending auto cut (countdown) can be canceled using any button on the
    panel
- Reset button does not reset the length when countdown cancledo

- Fix bug where display did not initialize correctly after start some
  times
  -> simply init again after welcome msg

- reduce countdown time by 500ms
2022-09-29 13:57:26 +02:00
jonny_ji7
4cb6b41a6b Add blinking at RESET; Adjust preset values
Blink 'IST' value on top display when reset (as with presets)
Adjust preset values to current labeling
2022-09-23 10:33:42 +02:00