Skip to content
Merged
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
4 changes: 2 additions & 2 deletions anki_vector/behavior.py
Original file line number Diff line number Diff line change
Expand Up @@ -293,9 +293,9 @@ async def dock_with_cube(self,
if approach_angle is not None:
dock_request.use_approach_angle = True
dock_request.use_pre_dock_pose = True
dock_request.approach_angle = approach_angle.radians
dock_request.approach_angle_rad = approach_angle.radians
if distance_from_marker is not None:
dock_request.distance_from_marker = distance_from_marker.distance_mm
dock_request.distance_from_marker_mm = distance_from_marker.distance_mm

return await self.grpc_interface.DockWithCube(dock_request)

Expand Down