Using the Flexs Q3’s UDP Streaming Feature
The Flexs Q3 supports streaming it’s data via UDP to a remote server at a preconfigured interval
By default the device streams on port 8000 in the following format
#pragma pack(1)
typedef struct
{
unsigned char uid[16];
unsigned char node;
float data[128];
} REGISTERS;
#pragma push
with “float data[128]” being the array of all the recorded metrics
For ‘C’ Implementations of processing the received data please visit one of the below guides
- Using the Flexs Q3 with InfluxDB and Grafana
- Using the Flexs Q3 with EmonCMS from the Open Energy Monitor Project
Other implementations in PHP, Java, Perl, Python and C++ exist, please contact us for more info
You must be logged in to post a comment.