Question about RELATIVE and ABSOLUTE movement. #124
Unanswered
PawelKulesz
asked this question in
Q&A
Replies: 1 comment 2 replies
-
|
Hey,
Do you mean VActual? VActual is time based. using run_to_position_steps(400, MovementAbsRel.RELATIVE)
run_to_position_steps(100, MovementAbsRel.RELATIVE) # <-- 100 Steps forwardrun_to_position_steps(400, MovementAbsRel.ABSOLUTE)
run_to_position_steps(100, MovementAbsRel.ABSOLUTE) # <-- 300 Steps backwards (back to position 100)Can you please share the relevant part of your script (how the Tmc-object is created and which movement function is being called). |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
Im doing some tests with UART control and as far as I understand, ABSOLUTE movement doesn't work for UART (with function run_to_position_steps, which I guess isn't intended to use with UART). Is it a STEP/DIR feature only and if it is, does the TMC2209 driver know where it currently is (on which step) or should I create a variable and store that information in it?
Beta Was this translation helpful? Give feedback.
All reactions