Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Data visualization and communication with embedded devices

License

NotificationsYou must be signed in to change notification settings

Overdrivr/Telemetry

Repository files navigation

Join the chat at  https://gitter.im/Overdrivr/pytelemetryStories in ReadyBuild statusDocumentation

Current statusPaused development for now, will restart once I find better ways of managing and distributing general-purpose embedded libraries. However, library is functional good stability & test coverage.

Overview

Telemetry enables easy communication and data visualization between a computer and any embedded platform, likeARM Mbed orArduino.

Specifically,Telemetry is a communication protocol, implemented in C language.

Overview

Data is exchanged on named channels, calledtopics (ex :foo,bar andqux on the figure above).

Sending data is calledpublishing.

Telemetry TM;int32_t i =123;TM.pub_i32("foo", i);

For receiving data,Telemetry lets you attach variables and functions to topics.When fresh data is received under a topic, attached variables will be updated and attached functions will be called.

Telemetry TM;float thr;TM.attach_f32_to("throttle", &thr);for(;;) {  TM.update();}

Wrappers

Telemetry is written to be portable and general-purpose, and the core code is not tied to any hardware.

Wrappers for specific platforms are written to provide a plug-and-play manner to use Telemetry:

Data visualization

As soon as a device publishes data, it is possible to leverage the power ofthePytelemetry Command Line InterfacePyPI version.

This terminal application lets you interact with the device, using simple commands.

Opening a live plot is as simple as

:> plot someTopic

Plot example

Central documentation

All the information can be found from theWiki Home.


[8]ページ先頭

©2009-2025 Movatter.jp