Skip to content

Commit

Permalink
add documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
piitaya committed Mar 14, 2021
1 parent afa736e commit 3a6fcb0
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions README.md
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
```

0 comments on commit 3a6fcb0

Please sign in to comment.