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"
1 Like

awsome integration - my wife will love it :smiley: Which attribute do I need to show remaining washing time?

I’ve upgraded from 0.3.1 to 0.4.0 in my QA HomeAssistant instance. I tried different remove/upgrade sequences. Unfortunately, none of them worked. The new integration find my two devices but on close, nothing happens. When adding them by IP or hostname, all I get is ā€˜Failed to connect’. I enabled debug log for HA & Python, but could not see any entry. Please advice on how to troubleshoot.