VZug integration

Hello

I would like to add my V-Zug devices (washing machine, tumbler) to Home Assistant. Does everyone
has an idea how does it work?

Best
feron

3 Likes

Iā€˜m also interested, if there is a way to integrate V-Zug home into home assistant.

are there any news?

I only found this repository:

2 Likes

Do you have a idea how to build a usable entity from the attribute ā€œInacativeā€ who brings true / false value?
Al used already almost 2 dayā€™s to find out how to do thatā€¦
Any help would be really appreciatedā€¦

1 Like

I recently went ahead and started work on a custom component that can be installed using HACS.

As of right now, I can only really guarantee support for AdoraDish v6000 and AdoraWash v6000 devices as these are the only devices I own, but Iā€™m more than happy to help with adding compatibility for further devices.

You can find the integration here: GitHub - siku2/hass-vzug: V-ZUG Home Assistant integration

1 Like

Work to my ZUG AdoraLaver V4000

Many thanks for this integration :grinning: I also have a v6000 and was wondering if there is any way to actually run a program via a service or something. This is possible from the VZUG app.

This implementation worked for me. You can then use the attributes for automations.

sensor:
  - platform: rest
    name: vzug_dishwasher
    resource: http://[Device_IP]/ai?command=getDeviceStatus
    value_template: "{{ value_json.result }}" 
    json_attributes:
        - "DeviceName"
        - "Serial"
        - "Inactive"
        - "Program"
        - "Status"
        - "ProgramEnd"
        - "End"
        - "EndType"
        - "deviceUuid"
  - platform: rest
    name: vzug_oven
    resource: http://[Device_IP]/ai?command=getDeviceStatus
    value_template: "{{ value_json.result }}" 
    json_attributes:
        - "DeviceName"
        - "Serial"
        - "Inactive"
        - "Program"
        - "Status"
        - "ProgramEnd"
        - "End"
        - "EndType"
        - "deviceUuid"