-
Notifications
You must be signed in to change notification settings - Fork 2k
WIP #Hackathon - Force Feedback on Feetech STS3215 #1314
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Grochowicz
wants to merge
22
commits into
huggingface:main
Choose a base branch
from
Grochowicz:force-feedback-laele
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+165
−5
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for more information, see https://pre-commit.ci
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What this does
This is a WIP by team 281 (L.A.E.L.E) for force feedback on STS3215 servo motor leader/follower, made during the LeRobot WorldWide Hackathon 2025.
Contributors: @LuizaMannes, @Askeiroh, @equadras, @leonardonm15, @Grochowicz.
How it works
The main logic is in teleoperate.py, which will now do two-way position information exchange between leader and follower.
There are threshold values that may need tweaking.
The code implements a traffic-light-like state machine and a virtual stall state machine:
Virtual stall:
The virtual stall state machine is used to make the motor current peak (because of a physical stall) set the virtual stall. The virtual stall is unset as soon as the position changes.
Traffic-light:
Green State – The follower is not struggling, so the operator can move the motor freely.
Yellow State – The follower is struggling.
Red State – The follower was blocked and the leader is in an invalid position. The leader is FORCED to imitate the follower’s position until things calm down. The operator loses control until it stabilizes.
Traffic-light State Transitions:
Green ➝ Red: if the motor just stalled.
Red ➝ Yellow: once the current drops back to safe levels (no more external force on the motor).
Yellow ➝ Red: if the motor just stalled.
Yellow ➝ Yellow: if the virtual stall is false.
Yellow ➝ Green: if the virtual stall is false.
TODO