Skip to content

Instantly share code, notes, and snippets.

@MoritzBuetzer
Created December 21, 2020 08:17
Show Gist options
  • Save MoritzBuetzer/6441d4045f989ef57aed915250bb4020 to your computer and use it in GitHub Desktop.
Save MoritzBuetzer/6441d4045f989ef57aed915250bb4020 to your computer and use it in GitHub Desktop.
REST Integration for V-Zug Home Appliances in Home Assistant
- platform: rest
resource: http://[DEVICE_IP]/ai?command=getDeviceStatus
name: 'V-Zug CookTopInduktion V6000'
authentication: digest
username: !secret vzug.username
password: !secret vzug.password
json_attributes:
- DeviceName
- Serial
- Inactive
- Status
- Program
- ProgramEnd
- platform: template
sensors:
vzug_cooktopinduktion_devicename:
friendly_name: 'V-Zug CookTopInduktion V6000 DeviceName'
value_template: "{{ state_attr('sensor.v_zug_cooktopinduktion_v6000', 'DeviceName') }}"
vzug_cooktopinduktion_serial:
friendly_name: 'V-Zug CookTopInduktion V6000 Serial'
value_template: "{{ state_attr('sensor.v_zug_cooktopinduktion_v6000', 'Serial') }}"
vzug_cooktopinduktion_inactive:
friendly_name: 'V-Zug CookTopInduktion V6000 Inactive'
value_template: "{{ state_attr('sensor.v_zug_cooktopinduktion_v6000', 'Inactive') }}"
vzug_cooktopinduktion_status:
friendly_name: 'V-Zug CookTopInduktion V6000 Status'
value_template: "{{ state_attr('sensor.v_zug_cooktopinduktion_v6000', 'Status') }}"
vzug_cooktopinduktion_program:
friendly_name: 'V-Zug CookTopInduktion V6000 Program'
value_template: "{{ state_attr('sensor.v_zug_cooktopinduktion_v6000', 'Program') }}"
vzug_cooktopinduktion_end:
friendly_name: 'V-Zug CookTopInduktion V6000 End'
value_template: "{{ state_attr('sensor.v_zug_cooktopinduktion_v6000', 'ProgramEnd')['End'] }}"
vzug_cooktopinduktion_endtype:
friendly_name: 'V-Zug CookTopInduktion V6000 End'
value_template: "{{ state_attr('sensor.v_zug_cooktopinduktion_v6000', 'ProgramEnd')['EndType'] }}"
@MoritzBuetzer
Copy link
Author

@siku2 awesome!

@simondaehler
Copy link

Awsome, Thanks
I have a AdoraDish V2000 I get the error "Einrichtung fehlgeschlage, wird erneut versucht" I guess the interface is not compatible with the V4000....

@siku2
Copy link

siku2 commented Aug 27, 2023

@simondaehler, can you create a new issue or discussion over at the repository? I would like to figure out what the issue is so the V2000 series can be supported as well, I just need a few things from your side and I don't want to clog up this thread.

@chruetli
Copy link

@siku2 I'm using your integration with an adorawash_v2000. I set it up with the very first version, so at least this one did work.

@tebeso
Copy link

tebeso commented Sep 17, 2023

I have both adorawash2000 and adoradry2000 and it works with latest version 0.31. Thanks a lot

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment