Electric Kiwi
Electric Kiwi
This integration uses the official Electric Kiwi API
配置
要将 Electric Kiwi hub 添加到您的 Home Assistant 实例中,请使用此 My 按钮:
手动配置步骤
如果上述 My 按钮不起作用,您也可以手动执行以下步骤:
-
浏览到您的 Home Assistant 实例。
-
转到
设置 > 设备与服务。 -
在右下角,选择
Add Integration 按钮。 -
从列表中选择 Electric Kiwi。
-
按照屏幕上的说明完成设置。
The configuration uses client_id
and client_secret
provided to Home Assistant, so all you need to do is install the integration and authenticate using your account credentials.
Supported functionality
The integration provides sensor
entities with account balances, billing, and hour of free power start and end time. It also provides a select
entity to change the hour of free power.
Use cases
This integration can be used as part of an automation, for example, to turn on/off appliances automatically.
Example automations
Run the heat pump during the hour of free power
alias: "Turn on expensive heat pump"
description: "Turn on the heat pump when the hour of free power starts"
triggers:
- at: sensor.hour_of_free_power_start
trigger: time
actions:
- action: climate.turn_on
target:
entity_id: climate.heat_pump
data: {}
alias: "Turn off expensive heat pump"
description: "Turn off the heat pump when the hour of free power ends"
triggers:
- at: sensor.hour_of_free_power_end
trigger: time
actions:
- action: climate.turn_off
target:
entity_id: climate.heat_pump
data: {}
Remove integration
This integration follows standard integration removal, no extra steps are required.
从Home Assistant中移除集成实例
- 前往 设置 > 设备与服务 并选择集成卡片。
- 从设备列表中,选择要删除的集成实例。
- 在条目旁边,选择三个点
菜单。然后,选择 删除。