Drive a Square
Before diving into this code, here's a quick heads-up on what you'll need to be familiar with:
- Python Programming: It's important to have a good grasp of Python, especially with concepts
like
functions
,loops
, andclasses
, since the example utilizes these fundamentals. - Asynchronous Programming with asyncio: Familiarity with Python's asyncio for writing concurrent
code using the
async/await
syntax. - farm-ng Filter Service Overview: This overview provides a base understanding of the gRPC service the client you create will connect to.
- farm-ng Track Follower Service Overview: This overview provides a base understanding of the gRPC service the client you create will connect to.
- farm-ng Transforms & Poses Overview: This overview provides insight into coordinate frames, transforms, and poses as they pertain to autonomous systems and autonomous navigation.
- farm-ng Tracks & Waypoints Overview: This overview provides insight into compiling poses as waypoints into a Track that can be followed by the Amiga.
The track follower examples will cause the Amiga to drive when the dashboard is in auto mode. Make sure the area is clear before running examples.
You can also run the examples when the Amiga dashboard is not in AUTO READY
or AUTO ACTIVE
and see the commands being sent with the red needle on the auto page without the Amiga actually moving.
The Square Track Example
operates as a standalone Python script,
in which an EventClient
to the farm-ng track follower service running on an Amiga brain is created.
This script requests the current pose of the robot, creates a square track from the current pose for the track follower, and commands the Amiga to follow the square track.
You can either run this example directly on a brain by ssh
'ing in, or use your local PC.
If using your local PC, it should be either connected to the same local network as the brain
or linked to it through tailscale.
Ensure that a farm-ng brain, with a GPS receiver and Oak cameras, is actively running the track follower service.
It is highly recommended to read through the Track Follower Service Overview before running this example.
This will provide insight into the requirements and API for using the track follower service to follow a path.
It is also recommended you go through the simpler Follow a Track example first.
1. Install the farm-ng Brain ADK package
2. Install the example's dependencies
It is recommended to also install these dependencies and run the example in the brain ADK virtual environment.
Setup
Create a virtual environment
python3 -m venv venv
source venv/bin/activate
Install
cd py/examples/square_track
pip install -r requirements.txt
3. Execute the Python script
To run this script from your PC, you need to update the service_config.json
by modifying the host
field with your Amiga brain name.
Please check out Amiga Development 101 for more details.
python main.py --service-config service_config.json
If everything worked correctly you should now see a large stream of text come up in your terminal!
4. Customize the run
Modify the square
If you wish to modify the square, you can either:
- Change the side length by specifying a
--side-length
value - Change the direction of the square by using the
--clockwise
flag
Check for details with:
python main.py --help
And see:
usage: amiga-track_follower-square [-h] --service-config SERVICE_CONFIG [--side-length SIDE_LENGTH] [--clockwise]
optional arguments:
-h, --help show this help message and exit
--service-config SERVICE_CONFIG
The service config.
--side-length SIDE_LENGTH
The side length of the square.
--clockwise Set to drive the square clockwise (right hand turns).
Default is counter-clockwise (left hand turns).
5. Code Overview
/get_pose
In this example we use the EventClient
with the request_reply
method
to get the current pose of the Amiga robot.
This pose becomes the first pose in the square track we will define programmatically.
async def get_pose(clients: dict[str, EventClient]) -> Pose3F64:
"""Get the current pose of the robot in the world frame, from the filter service.
Args:
clients (dict[str, EventClient]): A dictionary of EventClients.
"""
# We use the FilterState as the best source of the current pose of the robot
state: FilterState = await clients["filter"].request_reply("/get_state", Empty(), decode=True)
print(f"Current filter state:\n{state}")
return Pose3F64.from_proto(state.pose)
Track creation
We then construct a square track by iteratively adding waypoints along the track
at a small linear and/or angular distance away.
We use 0.1 meters
and 0.1 radians
between each point along the track,
but your track can be spaced much further.
We do recommend, however, that if you are creating a track that crosses itself
or a track in which the end and the start are at the same coordinates,
you have greater than 20
waypoints along your track.
The Pose3F64
objects are C++
classes from farm-ng-core
exposed to the Python
script using pybind
.
These represent a 3D Isometry frame transformation from a
parent (frame_a
) to a child (frame_b
) coordinate frame.
Each point along the track is created by multiplying a small relative transform to the pose of the previous pose along the track. In other words, the next pose along the track is either a small distance in front of or a small angular rotation to the right of the previous pose along the track.
The multiplication of coordinate frame transforms is a fundamental concept in robotics! If you would like more insight into this topic, please see the farm-ng Transforms & Poses Overview.
Because this example is a square, the transform between each waypoint represents either driving straight forward or turning in place. But this is not a constraint for the track follower! Your tracks can reflect a combination of rotation and translation (a 3d Isometry) between track waypoints.
async def build_square(clients: dict[str, EventClient], side_length: float, clockwise: bool) -> Track:
"""Build a square track, from the current pose of the robot.
Args:
clients (dict[str, EventClient]): A dictionary of EventClients.
side_length (float): The side length of the square, in meters.
clockwise (bool): True will drive the square clockwise (right hand turns).
False is counter-clockwise (left hand turns).
Returns:
Track: The track for the track_follower to follow.
"""
# Query the state estimation filter for the current pose of the robot in the world frame
world_pose_robot: Pose3F64 = await get_pose(clients)
# Create a container to store the track waypoints
track_waypoints: list[Pose3F64] = []
# Set the angle of the turns, based on indicated direction
angle: float = radians(-90) if clockwise else radians(90)
# Add the first goal at the current pose of the robot
world_pose_goal0: Pose3F64 = world_pose_robot *
Pose3F64(a_from_b=Isometry3F64(), frame_a="robot", frame_b="goal0")
track_waypoints.append(world_pose_goal0)
# Drive forward 1 meter (first side of the square)
track_waypoints.extend(create_straight_segment(track_waypoints[-1], "goal1", side_length))
# Turn left 90 degrees (first turn)
track_waypoints.extend(create_turn_segment(track_waypoints[-1], "goal2", angle))
# Add second side and turn
track_waypoints.extend(create_straight_segment(track_waypoints[-1], "goal3", side_length))
track_waypoints.extend(create_turn_segment(track_waypoints[-1], "goal4", angle))
# Add third side and turn
track_waypoints.extend(create_straight_segment(track_waypoints[-1], "goal5", side_length))
track_waypoints.extend(create_turn_segment(track_waypoints[-1], "goal6", angle))
# Add fourth side and turn
track_waypoints.extend(create_straight_segment(track_waypoints[-1], "goal7", side_length))
track_waypoints.extend(create_turn_segment(track_waypoints[-1], "goal8", angle))
# Return the list of waypoints as a Track proto message
return format_track(track_waypoints)
def create_straight_segment(
previous_pose: Pose3F64, next_frame_b: str, distance: float, spacing: float = 0.1
) -> list[Pose3F64]:
"""Compute a straight segment of a square.
Args:
previous_pose (Pose3F64): The previous pose.
next_frame_b (str): The name of the child frame of the next pose.
distance (float): The side length of the square, in meters.
spacing (float): The spacing between waypoints, in meters.
Returns:
Pose3F64: The poses of the straight segment.
"""
# Create a container to store the track segment waypoints
segment_poses: list[Pose3F64] = [previous_pose]
# For tracking the number of segments and remaining angle
counter: int = 0
remaining_distance: float = distance
while abs(remaining_distance) > 0.01:
# Compute the distance of the next segment
segment_distance: float = copysign(min(abs(remaining_distance), spacing), distance)
# Compute the next pose
straight_segment: Pose3F64 = Pose3F64(
a_from_b=Isometry3F64([segment_distance, 0, 0], Rotation3F64.Rz(0)),
frame_a=segment_poses[-1].frame_b,
frame_b=f"{next_frame_b}_{counter}",
)
segment_poses.append(segment_poses[-1] * straight_segment)
# Update the counter and remaining angle
counter += 1
remaining_distance -= segment_distance
# Rename the last pose to the desired name
segment_poses[-1].frame_b = next_frame_b
return segment_poses
def create_turn_segment(
previous_pose: Pose3F64, next_frame_b: str, angle: float, spacing: float = 0.1
) -> list[Pose3F64]:
"""Compute a turn segment of a square.
Args:
previous_pose (Pose3F64): The previous pose.
next_frame_b (str): The name of the child frame of the next pose.
angle (float): The angle to turn, in radians (+ left, - right).
spacing (float): The spacing between waypoints, in radians.
Returns:
list[Pose3F64]: The poses of the turn segment.
"""
# Create a container to store the track segment waypoints
segment_poses: list[Pose3F64] = [previous_pose]
# For tracking the number of segments and remaining angle
counter: int = 0
remaining_angle: float = angle
while abs(remaining_angle) > 0.01:
# Compute the angle of the next segment
segment_angle: float = copysign(min(abs(remaining_angle), spacing), angle)
# Compute the next pose
turn_segment: Pose3F64 = Pose3F64(
a_from_b=Isometry3F64.Rz(segment_angle),
frame_a=segment_poses[-1].frame_b,
frame_b=f"{next_frame_b}_{counter}",
)
segment_poses.append(segment_poses[-1] * turn_segment)
# Update the counter and remaining angle
counter += 1
remaining_angle -= segment_angle
# Rename the last pose to the desired name
segment_poses[-1].frame_b = next_frame_b
return segment_poses
Follow the track
Additionally, this example:
- formats the created track
- Sets the track for the track follower to follow (
/set_track
) - Sends the request to start following the track (
/start
) - Creates multiple
asyncio.Task
's and runs them simultaneously- Creating, setting, and following the path
- Streaming the state of the track follower service
For more details on these, please review the simpler Follow a Track example.
Congrats you are done!
To run this example, you must activate the auto control
mode on your Amiga via the dashboard.
We highly recommend to have some basic knowledge about
asyncio
.