-
Notifications
You must be signed in to change notification settings - Fork 27
Tutorial (C API)
Rémi Bèges edited this page Feb 15, 2016
·
23 revisions
Instanciate TM_state
TM_state myState;
Perform the initialization
init_telemetry(&state &transport);
And immediately start publishing on a topic
publish_i32("foo",123);
And that's it.
If you connect to the device with pytelemetrycli, you can run a few commands to observe the result desktop-side: todo : animated ttty gif
>: ls
foo
>: print foo
123
Back Wiki home
- Fast data visualization with the command line interface (todo)
- Fast prototyping remote program control with python (todo)
- Overview of the library
- Protocol description
- All the good stuff inside Telemetry
- List of supported platforms
- Good practices (Must-read !) in writing
- Frequently Asked Questions todo
- List of official examples
- List of projects using telemetry