There are examples avariable? #82
-
Hi, I'm new to this, and I would like to know if there are examples of how to send data. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
I'd be curious how to do this too, for custom telemetry. I'm quite certain it's possible since we're able to stream bytes, but I'm not sure how. |
Beta Was this translation helpful? Give feedback.
-
If your telemetry protocol is resistant to messages lost (for example mavlink) you can use UDP transport (see config for mavlink stream in HOWTO). If you telemetry needs reliable stream of bytes (like TCP socket) you need to use IPoverWB tunnel (see HOWTO). For mavlink telemetry examples see: https://github.com/mavlink-router/mavlink-router/tree/master/examples |
Beta Was this translation helpful? Give feedback.
-
You can pack json into UDP packet or use msgpack instead |
Beta Was this translation helpful? Give feedback.
You can pack json into UDP packet or use msgpack instead