Skip to content
This repository was archived by the owner on Dec 18, 2023. It is now read-only.
This repository was archived by the owner on Dec 18, 2023. It is now read-only.

New Venta Original Connect / 500 series #1

Description

@johan-de-jong

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
  }
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions