-
-
Notifications
You must be signed in to change notification settings - Fork 7.7k
Add documentation for integration of Vallox ventilation units #9668
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
3c9c2e1
Add documentation for integration of Vallox ventilation units.
andre-richter 81cfa26
Address review comments #1.
andre-richter e20cd90
Apply suggestions from code review
andre-richter b33f530
Adapt to changed architecture of parent patch.
andre-richter 3d7e48b
:pencil2: Component -> Integration
frenck File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
--- | ||
layout: page | ||
title: "Vallox Ventilation Units" | ||
description: "Instructions on how to integrate Vallox ventilation units into Home Assistant." | ||
date: 2019-06-19 20:00 | ||
sidebar: true | ||
comments: false | ||
sharing: true | ||
footer: true | ||
ha_category: | ||
- Fan | ||
- Sensor | ||
ha_release: 0.96 | ||
ha_iot_class: Local Polling | ||
--- | ||
|
||
The `vallox` integration lets you control any Vallox ventilation unit that is supported by the [vallox_websocket_api](https://github.com/yozik04/vallox_websocket_api) (follow the link for a list of supported units). | ||
|
||
The **fan** platform of this integration allows you to either turn on/off the complete unit via the toggle switch or select a ventilation profile through the service `vallox/set_profile`. The four standard Vallox profiles are provided: | ||
|
||
- `At Home` | ||
- `Away` | ||
- `Boost` | ||
- `Fireplace` | ||
|
||
Also, there is a **sensor** platform that exposes a number of relevant metrics like fan speed, various air temperatures and humidity. | ||
|
||
### {% linkable_title Configuration %} | ||
andre-richter marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
```yaml | ||
vallox: | ||
host: IP_ADDRESS | ||
``` | ||
|
||
{% configuration %} | ||
klaasnicolaas marked this conversation as resolved.
Show resolved
Hide resolved
|
||
host: | ||
description: The IP or hostname of the ventilation unit in your home network. | ||
required: true | ||
type: string | ||
name: | ||
description: The name of this device as you want to see it in Home Assistant. | ||
required: false | ||
default: Vallox | ||
type: string | ||
{% endconfiguration %} | ||
|
||
## {% linkable_title Profile Switching %} | ||
|
||
For convenient switching of ventilation profiles in the GUI, consider using an [input_select](../input_select) hooked to an automation, for example: | ||
|
||
{% raw %} | ||
```yaml | ||
input_select: | ||
ventilation_profile: | ||
name: Ventilation profile select | ||
options: | ||
- "Home" | ||
- "Away" | ||
- "Boost" | ||
- "Fireplace" | ||
icon: mdi:fan | ||
|
||
automation: | ||
- alias: Set Ventilation Profile | ||
trigger: | ||
platform: state | ||
entity_id: input_select.ventilation_profile | ||
action: | ||
service: vallox.set_profile | ||
data_template: | ||
profile: "{{ states('input_select.ventilation_profile') }}" | ||
``` | ||
{% endraw %} | ||
|
||
## {% linkable_title Fan Services %} | ||
|
||
### {% linkable_title Service `vallox.set_profile` %} | ||
|
||
Set the ventilation profile. | ||
|
||
| Service data attribute | Optional | Description | | ||
|------------------------|----------|------------------------------------------------------| | ||
| `profile` | no | Allowed values: `Home`, `Away`, `Boost`, `Fireplace` | | ||
|
||
### {% linkable_title Service `vallox.set_profile_fan_speed_home` %} | ||
|
||
Set the fan speed of the `Home` profile. | ||
|
||
| Service data attribute | Optional | Description | | ||
|------------------------|----------|-------------------------------------------------| | ||
| `fan_speed` | no | Fan speed in %. `Integer`, between 0 and 100. | | ||
|
||
|
||
### {% linkable_title Service `vallox.set_profile_fan_speed_away` %} | ||
|
||
Set the fan speed of the `Away` profile. | ||
|
||
| Service data attribute | Optional | Description | | ||
|------------------------|----------|-------------------------------------------------| | ||
| `fan_speed` | no | Fan speed in %. `Integer`, between 0 and 100. | | ||
|
||
### {% linkable_title Service `vallox.set_profile_fan_speed_boost` %} | ||
|
||
Set the fan speed of the `Boost` profile. | ||
|
||
| Service data attribute | Optional | Description | | ||
|------------------------|----------|-------------------------------------------------| | ||
| `fan_speed` | no | Fan speed in %. `Integer`, between 0 and 100. | |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.