mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-26 01:51:41 +00:00
17 lines
266 B
Protocol Buffer
17 lines
266 B
Protocol Buffer
|
|
package gazebo.msgs;
|
||
|
|
|
||
|
|
/// \ingroup gazebo_msgs
|
||
|
|
/// \interface Joystick
|
||
|
|
/// \brief A message for joystick data
|
||
|
|
/// \verbatim
|
||
|
|
|
||
|
|
option java_outer_classname = "GzJoystick";
|
||
|
|
|
||
|
|
message Joystick
|
||
|
|
{
|
||
|
|
repeated double axes = 1;
|
||
|
|
repeated bool buttons = 2;
|
||
|
|
}
|
||
|
|
|
||
|
|
/// \endverbatim
|