26.08.2022, 11:12
(26.08.2022, 11:06)admin Wrote: Are all 200 objects temperature sensors or are there different values that affect the JSON message format? Is extraTags = { subId = 'T19' } common for all messages or not?
Hello Admin,
The following things are to be published.
WaterMeter
Data:
standard1/rp_one_m/waterMetrics/<username>
{
"time": <UNIX timestamp>,
"extraTags": {
"subId": <string>
}
"fields": {
"absVolume_m3": <float>,
"flow_m3ph": <float>
}
}
Weather Station
Data:
standard1/rp_one_m/weatherMetrics/<username>
{
"time": <UNIX timestamp>,
"extraTags": {
"subId": <string>
}
"fields": {
"outdoorTemperature_degC": <float>,
"outdoorBrightness_lux": <float>,
"windSpeed_kmph": <float>
}
}
GasMeter
Data:
standard1/rp_one_m/gasMetrics/<username>
{
"time": <UNIX timestamp>,
"extraTags": {
"subId": <string>
}
"fields": {
"absVolume_Nm3": <float>
}
}
Errors & Messages:
standard1/autogen/alarms/<username>
{
"time": <UNIX timestamp>,
"extraTags": {
"subId": <string>
}
"fields": {
"alarmActive": <boolean>,
"msg": <srtring>,
"mbusStatus": <int> //zero = OK otherwise alarm
}
}
Thank you again for the great support.