Venta has new 'Connect' (Wi-Fi) models for their original series. E.g: https://www.venta-air.com/en_de/AH555-Original-Connect-Air-Humidifier/7055500
The 500 series does not have a configurable color LED. It has 3 fan speeds (+ off) instead of 4. The JSON API seems to be similar.
Would you be interested to update your plugin?
Reading settings
$ curl -s -X POST 'http://www.xxx.yyy.zzz/api/telemetry' | jq
{
"Header": {
"DeviceType": 500,
"MacAdress": "C8:C9:A3:xx:yy:zz",
"ProtocolV": "3.0"
},
"Action": {
"Power": 1,
"FanSpeed": 0,
"TargetHum": 45,
"SleepMode": 0,
"Automatic": 1,
"BaLi": 10
},
"Info": {
"OperationT": 1414,
"ServiceT": 1414,
"ServiceMax": 2016,
"Warnings": 0,
"SWMain": "1.0.0.6",
"HwIndexMB": 1
},
"Measure": {
"Temperature": 23.86244,
"Humidity": 55.0576
}
}
Updating settings:
curl -s -X POST 'http://www.xxx.yyy.zzz/api/telemetry?request=set' \
-H 'Content-Type: application/json' \
-d '{"Power":1,"FanSpeed":3,"SleepMode":0,"Automatic":0,"Action":"control"}' | jq
{
"Header": {
"DeviceType": 500,
"MacAdress": "C8:C9:A3:xx:yy:zz",
"ProtocolV": "3.0"
},
"Action": {
"Power": 1,
"FanSpeed": 3,
"TargetHum": 45,
"SleepMode": 0,
"Automatic": 0,
"BaLi": 10
},
"OperationT": 2041,
"ServiceT": 11,
"ServiceMax": 2016,
"Warnings": 0,
"SWMain": "1.0.0.6",
"HwIndexMB": 1
},
"Measure": {
"Temperature": 21.75822,
"Humidity": 59.11192
}
}
Venta has new 'Connect' (Wi-Fi) models for their original series. E.g: https://www.venta-air.com/en_de/AH555-Original-Connect-Air-Humidifier/7055500
The 500 series does not have a configurable color LED. It has 3 fan speeds (+ off) instead of 4. The JSON API seems to be similar.
Would you be interested to update your plugin?
Reading settings
$ curl -s -X POST 'http://www.xxx.yyy.zzz/api/telemetry' | jq { "Header": { "DeviceType": 500, "MacAdress": "C8:C9:A3:xx:yy:zz", "ProtocolV": "3.0" }, "Action": { "Power": 1, "FanSpeed": 0, "TargetHum": 45, "SleepMode": 0, "Automatic": 1, "BaLi": 10 }, "Info": { "OperationT": 1414, "ServiceT": 1414, "ServiceMax": 2016, "Warnings": 0, "SWMain": "1.0.0.6", "HwIndexMB": 1 }, "Measure": { "Temperature": 23.86244, "Humidity": 55.0576 } }Updating settings:
curl -s -X POST 'http://www.xxx.yyy.zzz/api/telemetry?request=set' \ -H 'Content-Type: application/json' \ -d '{"Power":1,"FanSpeed":3,"SleepMode":0,"Automatic":0,"Action":"control"}' | jq { "Header": { "DeviceType": 500, "MacAdress": "C8:C9:A3:xx:yy:zz", "ProtocolV": "3.0" }, "Action": { "Power": 1, "FanSpeed": 3, "TargetHum": 45, "SleepMode": 0, "Automatic": 0, "BaLi": 10 }, "OperationT": 2041, "ServiceT": 11, "ServiceMax": 2016, "Warnings": 0, "SWMain": "1.0.0.6", "HwIndexMB": 1 }, "Measure": { "Temperature": 21.75822, "Humidity": 59.11192 } }