Skip to content
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

F13 work_x and demo height adjustment #162

Merged
merged 2 commits into from
Aug 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config/ff13_config_rb36/params.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
'thooth_count': 15,
'pitch': 0.033,
'wheel_distance': 0.47,
'work_x': 0.0125,
'work_x': 0.035,
'drill_radius': 0.025,
'antenna_offset': 0.205,
'tool': 'tornado',
Expand Down
2 changes: 1 addition & 1 deletion field_friend/automations/puncher.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ async def tornado_drill(self, angle: float = 180, turns: float = 2, with_open_dr
rosys.notify('homing failed!', type='negative')
raise PuncherException('homing failed')
await rosys.sleep(0.5)
await self.field_friend.z_axis.move_down_until_reference(min_position=-0.065 if self.is_demo else None)
await self.field_friend.z_axis.move_down_until_reference(min_position=-0.058 if self.is_demo else None)

await self.field_friend.z_axis.turn_knifes_to(angle)
await rosys.sleep(2)
Expand Down
Loading