Has anyone created a Hass.io plugin for the Neurio local sensor? I know that there is support for the Neur.io service but I like to keep things local and not dependent on cloud services if at all possible.
All of the information is available on the local sensor and the cloud service seem less than useful these days. If no one has created a local sensor can I get pointers on how to create one of my own? This device has a webpage on the local net that provides JSON output.
The JSON format looks like this:
// 20180922092493
// http://192.168.10.9/current-sample
{
"sensorId": "0x0000C47F51019B7D",
"timestamp": "2018-09-22T13:28:31Z",
"channels": [
{
"type": "PHASE_A_CONSUMPTION",
"ch": 1,
"eImp_Ws": 119434880724,
"eExp_Ws": 23,
"p_W": 645,
"q_VAR": 79,
"v_V": 123.087
},
{
"type": "PHASE_B_CONSUMPTION",
"ch": 2,
"eImp_Ws": 130301420433,
"eExp_Ws": 23,
"p_W": 918,
"q_VAR": -16,
"v_V": 122.051
},
{
"type": "CONSUMPTION",
"ch": 3,
"eImp_Ws": 249736301446,
"eExp_Ws": 41,
"p_W": 1563,
"q_VAR": 63,
"v_V": 122.569
}
],
"cts": [
{
"ct": 1,
"p_W": 645,
"q_VAR": 79,
"v_V": 123.087
},
{
"ct": 2,
"p_W": 918,
"q_VAR": -16,
"v_V": 122.051
},
{
"ct": 3,
"p_W": 0,
"q_VAR": 0,
"v_V": 0.000
},
{
"ct": 4,
"p_W": 0,
"q_VAR": 0,
"v_V": 123.080
}
]
}