-
Hi, First of all, thank you for this work really appreciate the effort put into this project ! I am trying to connect a node using this library with I am trying to create a struct to match mavros_msgs/State.msg. I followed your documentation and came up with this struct: type State struct {
msg.Package `ros:"mavros_msgs"`
Armed bool
Connected bool
Guided bool
Header std_msgs.Header
ManualInput bool
Mode string
SystemStatus uint8
} When I use it with your subscriber-custom example, I keep getting this message :
I tried the same using a standard struct message like Furthermore, I tried with Am I doing something wrong ? Thank you :) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hi, I just found the definition of the BatteryState message here There's a little difference with the one defined as standard in this library. In fact Temperature is not present in the definition above. |
Beta Was this translation helpful? Give feedback.
Hi,
I just found the definition of the BatteryState message here
There's a little difference with the one defined as standard in this library. In fact Temperature is not present in the definition above.
So I'm curious to understand why there's differences in standard messages for example ?