Ardupilot2/libraries/AP_DDS/Idl/sensor_msgs/msg/Joy.idl
arshPratap 5168f39463 AP_DDS: Add Subscriber support with Joy
* Register subscriber and deserialize sensor_msgs/Joy

Co-authored-by: Rhys Mainwaring <rhys.mainwaring@me.com>
Co-authored-by: Ryan Friedman <ryanfriedman5410+github@gmail.com>
2023-06-01 11:37:59 +10:00

26 lines
768 B
Plaintext

// generated from rosidl_adapter/resource/msg.idl.em
// with input from sensor_msgs/msg/Joy.msg
// generated code does not contain a copyright notice
#include "std_msgs/msg/Header.idl"
module sensor_msgs {
module msg {
@verbatim (language="comment", text=
"Reports the state of a joystick's axes and buttons.")
struct Joy {
@verbatim (language="comment", text=
"The timestamp is the time at which data is received from the joystick.")
std_msgs::msg::Header header;
@verbatim (language="comment", text=
"The axes measurements from a joystick.")
sequence<float> axes;
@verbatim (language="comment", text=
"The buttons measurements from a joystick.")
sequence<int32> buttons;
};
};
};