Reputation: 33
I have an embedded "thing" which generates data samples from several sensors at 1kHz. It has a fairly bandwidth constrained 3G connection to the outside world.
Does anyone know of a platform which can provide the following (or at least a subset of the following):
The majority of platforms I have found are designed to work in the domain of seconds rather than milliseconds and/or use string-heavy data formats such as JSON.
Upvotes: 1
Views: 252
Reputation: 181
If you want a single solution, try ATSD, it does all of the above.
For example you can connect your device to an MQTT server (publish/subscribe interface) that talks to ATSD, allowing you to send/receive real time data streams. Open source sketches for this are available here.
Upvotes: 2