|
@@ -59,6 +59,16 @@ Current temperature is also displayed.
|
|
|
|
|
|
|
|
- **Child lock** (on/off)
|
|
- **Child lock** (on/off)
|
|
|
|
|
|
|
|
|
|
+### Switch devices
|
|
|
|
|
+
|
|
|
|
|
+**Kogan Energy monitoring Smart Plug
|
|
|
|
|
+- **power** (on/off)
|
|
|
|
|
+- **current power consumption** (Watts)
|
|
|
|
|
+- **Additional non-standard attributes**
|
|
|
|
|
+ - **current current draw** (Amps)
|
|
|
|
|
+ - **current voltage** (Volts)
|
|
|
|
|
+ - **timer** (seconds) [provided as read only]
|
|
|
|
|
+
|
|
|
---
|
|
---
|
|
|
|
|
|
|
|
### Warning
|
|
### Warning
|
|
@@ -114,28 +124,32 @@ tuya_local:
|
|
|
|
|
|
|
|
#### type
|
|
#### type
|
|
|
|
|
|
|
|
- _(string) (Optional)_ The type of Tuya device. `auto` to automatically detect the device type, or if that doesn't work, select from the available options `heater`, `geco_heater` `gpcv_heater`, `dehumidifier`, `fan` or `kogan_heater`.
|
|
|
|
|
|
|
+ _(string) (Optional)_ The type of Tuya device. `auto` to automatically detect the device type, or if that doesn't work, select from the available options `heater`, `geco_heater` `gpcv_heater`, `dehumidifier`, `fan`, `kogan_heater` or `kogan_switch`.
|
|
|
|
|
|
|
|
_Default value: auto_
|
|
_Default value: auto_
|
|
|
|
|
|
|
|
#### climate
|
|
#### climate
|
|
|
|
|
|
|
|
- _(boolean) (Optional)_ Whether to surface this appliance as a climate device.
|
|
|
|
|
|
|
+ _(boolean) (Optional)_ Whether to surface this appliance as a climate device. (not supported for switches)
|
|
|
|
|
|
|
|
_Default value: true_
|
|
_Default value: true_
|
|
|
|
|
|
|
|
#### display_light
|
|
#### display_light
|
|
|
|
|
|
|
|
- _(boolean) (Optional)_ Whether to surface this appliance's LED display control as a light (not supported for Kogan, GECO or GPCV Heaters).
|
|
|
|
|
|
|
+ _(boolean) (Optional)_ Whether to surface this appliance's LED display control as a light (not supported for Kogan, GECO or GPCV Heaters, or switches).
|
|
|
|
|
|
|
|
_Default value: false_
|
|
_Default value: false_
|
|
|
|
|
|
|
|
#### child_lock
|
|
#### child_lock
|
|
|
|
|
|
|
|
- _(boolean) (Optional)_ Whether to surface this appliances's child lock as a lock device (not supported for fans).
|
|
|
|
|
|
|
+ _(boolean) (Optional)_ Whether to surface this appliances's child lock as a lock device (not supported for fans or switches).
|
|
|
|
|
|
|
|
_Default value: false_
|
|
_Default value: false_
|
|
|
|
|
|
|
|
|
|
+#### switch
|
|
|
|
|
+
|
|
|
|
|
+ _(boolean) (Optional)_ Whether to surface this device as a switch device (supported only for switches)
|
|
|
|
|
+
|
|
|
## Heater gotchas
|
|
## Heater gotchas
|
|
|
|
|
|
|
|
Goldair GPPH heaters have individual target temperatures for their Comfort and Eco modes, whereas Home Assistant only supports a single target temperature. Therefore, when you're in Comfort mode you will set the Comfort temperature (`5`-`35`), and when you're in Eco mode you will set the Eco temperature (`5`-`21`), just like you were using the heater's own control panel. Bear this in mind when writing automations that change the operation mode and set a temperature at the same time: you must change the operation mode _before_ setting the new target temperature, otherwise you will set the current thermostat rather than the new one.
|
|
Goldair GPPH heaters have individual target temperatures for their Comfort and Eco modes, whereas Home Assistant only supports a single target temperature. Therefore, when you're in Comfort mode you will set the Comfort temperature (`5`-`35`), and when you're in Eco mode you will set the Eco temperature (`5`-`21`), just like you were using the heater's own control panel. Bear this in mind when writing automations that change the operation mode and set a temperature at the same time: you must change the operation mode _before_ setting the new target temperature, otherwise you will set the current thermostat rather than the new one.
|