Home Assistant Component for Qubino Wire Pilot
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 or 5 presets :comfort- mapped qubino "Comfort" modecomfort-1- mapped qubino "Comfort -1" mode (optional)comfort-2- mapped qubino "Comfort -2" mode (optional)eco- mapped qubino "Eco" modeaway- mapped qubino "Frost protection" mode
off- mapped qubino "Off" mode :
additional_modes: true in your configuration.
| Key | Type | Required | Description |
|---|---|---|---|
platform |
string | yes | Platform name |
heater |
string | yes | Light entity |
sensor |
string | no | Temperature sensor (for display) |
additional_modes |
boolean | no | 6-order support (add Comfort -1 and Comfort -2 preset) |
name |
string | no | Name to use in the frontend. |
unique_id |
string | no | An ID that uniquely identifies this cover group. If two climates have the same unique ID, Home Assistant will raise an error. |
The unique id is recommended to allow icon, entity_id or name changes from the UI.
climate:
- platform: qubino_wire_pilot
heater: light.heater_living_room_dimmerwith 6 order
climate:
- platform: qubino_wire_pilot
heater: light.heater_living_room_dimmer
additional_modes: truewith optional sensor
climate:
- platform: qubino_wire_pilot
heater: light.heater_living_room_dimmer
sensor: sensor.temperature_living_roomusing unique_id
climate:
- platform: qubino_wire_pilot
heater: light.heater_living_room_dimmer
unique_id: sensor.temperature_living_roomYou can use the climate-mode-entity-row card in your lovelace dashboard to easily switch between modes.