Skip to content
This repository has been archived by the owner on Feb 3, 2025. It is now read-only.

Commit

Permalink
Plugin to make Cessna fly and twweaks in the CessnaGUIPlugin.
Browse files Browse the repository at this point in the history
  • Loading branch information
caguero committed May 29, 2015
1 parent 1b7b74f commit 9b98cb3
Show file tree
Hide file tree
Showing 7 changed files with 533 additions and 123 deletions.
35 changes: 28 additions & 7 deletions gazebo/msgs/cessna.proto
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,45 @@ package gazebo.msgs;

message Cessna
{
/// \brief Target RPM of the propeller.
/// \brief Current RPM of the propeller.
optional float propeller_speed = 1;

/// \brief Target left aileron angle in rads.
/// \brief Current left aileron angle in rads.
optional float left_aileron = 2;

/// \brief Target left flap angle in rads.
/// \brief Current left flap angle in rads.
optional float left_flap = 3;

/// \brief Target right aileron angle in rads.
/// \brief Current right aileron angle in rads.
optional float right_aileron = 4;

/// \brief Target right flap angle in rads.
/// \brief Current right flap angle in rads.
optional float right_flap = 5;

/// \brief Target elevators angle in rads.
/// \brief Current elevators angle in rads.
optional float elevators = 6;

/// \brief Target ruddle angle in rads.
/// \brief Current ruddle angle in rads.
optional float rudder = 7;

/// \brief Target RPM of the propeller.
optional float cmd_propeller_speed = 8;

/// \brief Target left aileron angle in rads.
optional float cmd_left_aileron = 9;

/// \brief Target left flap angle in rads.
optional float cmd_left_flap = 10;

/// \brief Target right aileron angle in rads.
optional float cmd_right_aileron = 11;

/// \brief Target right flap angle in rads.
optional float cmd_right_flap = 12;

/// \brief Target elevators angle in rads.
optional float cmd_elevators = 13;

/// \brief Target ruddle angle in rads.
optional float cmd_rudder = 14;
}
Loading

0 comments on commit 9b98cb3

Please sign in to comment.