Skip to content

Commit 8aa0a59

Browse files
committed
Resolves space-ros#67 update Readme
1 parent 2310827 commit 8aa0a59

File tree

2 files changed

+21
-7
lines changed

2 files changed

+21
-7
lines changed

ingenuity_mars_helicopter/README.md

+19-5
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,6 @@ Each folder is a ROS 2 package. Each package has their own README.md file explai
1919

2020
## Setup
2121

22-
This project builds on `openrobotics/space_robots_demo` docker image. To build that docker image follow the instructions at this [README](https://github.com/space-ros/docker/blob/main/moveit2/README.md). To build that image, you also need to build the spaceros base image. You can access that [here](https://github.com/space-ros/space-ros).
23-
24-
After ensuring you have the `openrobotics/space_robots_demo` docker image. Go ahead and clone this repo.
25-
2622
1. Clone this repository:
2723
```bash
2824
git clone [email protected]:BarisYazici/demos.git
@@ -133,7 +129,25 @@ graph TD
133129
class G visualization;
134130
```
135131

132+
## Topics
133+
134+
The following table explains the key topics used in the Ingenuity Flight Simulator:
135+
136+
| Topic Name | Description | Data Type | Direction |
137+
|------------|-------------|-----------|-----------|
138+
| `/angle_of_attack` | Controls the collective pitch of the rotor blades | `ignition.msgs.Double` | Input to Simulation |
139+
| `/alpha_c` | Lateral cyclic control input | `ignition.msgs.Double` | Input to Simulation |
140+
| `/alpha_s` | Longitudinal cyclic control input | `ignition.msgs.Double` | Input to Simulation |
141+
| `/desired_altitude` | Sets the target altitude for the flight controller | `ignition.msgs.Double` | Input to Controller |
142+
| `/imu` | Provides IMU sensor data from the Ingenuity model | `ignition.msgs.IMU` | Output from Simulation |
143+
| `/altimeter` | Provides altitude data from the Ingenuity model | `ignition.msgs.Altimeter` | Output from Simulation |
144+
| `/camera` | Provides camera feed from the Ingenuity model | `ignition.msgs.Image` | Output from Simulation |
145+
| `/wrench/ingenuity_model/blade_1` | Forces and torques applied to blade 1 | `ignition.msgs.Wrench` | Output from Simulation |
146+
| `/wrench/ingenuity_model/blade_2` | Forces and torques applied to blade 2 | `ignition.msgs.Wrench` | Output from Simulation |
147+
| `/wrench/ingenuity_model/blade_3` | Forces and torques applied to blade 3 | `ignition.msgs.Wrench` | Output from Simulation |
148+
| `/wrench/ingenuity_model/blade_4` | Forces and torques applied to blade 4 | `ignition.msgs.Wrench` | Output from Simulation |
149+
136150

137151
## License
138152

139-
Apache License 2.0
153+
Apache License 2.0

ingenuity_mars_helicopter/ingenuity_description/sdf/ingenuity_world.sdf

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@
2424
between -0.0349066 and 0.139626 radians(2 to 8 degrees)
2525
ign topic -t /angle_of_attack -m ignition.msgs.Double -p "data: 0.1"
2626
27-
Publish the longitudinal cyclic control:
27+
Publish the lateral cyclic control:
2828
between -0.00001 to 0.00001
2929
ign topic -t /alpha_c -m ignition.msgs.Double -p "data: 0.00001"
3030
31-
Publish the lateral cyclic control:
31+
Publish the longitudinal cyclic control:
3232
between -0.00001 to 0.00001
3333
ign topic -t /alpha_s -m ignition.msgs.Double -p "data: 0.00001"
3434

0 commit comments

Comments
 (0)