-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
@@ -1,2 +1,57 @@ | ||
# home-assistant-qubino-wire-pilot | ||
|
||
Home Assistant Component for Qubino Wire Pilot | ||
|
||
## Introduction | ||
|
||
The Qubino ZMNHJD1 is not recognized as a thermostat in Home Assistant but as a light. | ||
The light percentage is mapped to a mode. | ||
|
||
| Value | Min | Max | ||
:--- | :--- | :--- | ||
| Off | 0% | 10% | ||
| Frost protection | 11% | 20% | ||
| Eco | 21% | 30% | ||
| Comfort -2 | 31% | 40% | ||
| Comfort -1 | 41% | 50% | ||
| Comfort | 51% | 100% | ||
|
||
This component create a `climate` entity using the `light` entity. | ||
|
||
The climate will have 2 modes : | ||
|
||
- `heat` - splitted into 3 presets : | ||
- `comfort` - mapped qubino "Comfort" mode) | ||
- `eco` - mapped qubino "Eco" mode) | ||
- `away` - mapped qubino "Frost protection" mode) | ||
- `off` - mapped qubino "Off" mode) : | ||
|
||
:warning: "Comfort -1" and "Comfort -2" are not supported by this component. | ||
|
||
## Configuration | ||
|
||
| Key | Type | Required | Description | ||
:--- | :--- | :--- | :--- | ||
| `platform` | string | yes | Platform name | ||
| `name` | string | yes | Name of the entity | ||
| `heater` | string | yes | Light entity | ||
| `sensor` | string | no | Temperature sensor (for display) | ||
|
||
## Example | ||
|
||
```yaml | ||
climate: | ||
- platform: qubino_wire_pilot | ||
name: thermostat_living_room | ||
heater: light.heater_living_room_dimmer | ||
``` | ||
or with optional sensor | ||
```yaml | ||
climate: | ||
- platform: qubino_wire_pilot | ||
name: thermostat_living_room | ||
heater: light.heater_living_room_dimmer | ||
sensor: sensor.temperature_living_room | ||
``` |