本帖最后由 sangood 于 2019-8-11 11:14 编辑
感谢分享,真是我想要的插件。请教下报错:HA版本0.95.4
[homeassistant.components.automation] Error while executing automation automation.auto_fan_studyroom_by_temperature. Service not found for call_service at pos 1: Unable to find service actuator/actuate
#调节餐厅吊扇-温度
- alias: auto_fan_diningroom_by_temperature
initial_state: true
trigger:
- platform: time
at: '07:30:01'
- platform: state
entity_id: sensor.m13_temperature
# 触发时间
condition:
condition: and
conditions:
- condition: time
after: '07:30:00'
before: '21:30:00'
- condition: state
entity_id: input_select.scenes
state: '在家'
action:
- service: actuator.actuate
data:
sensor_id: sensor.m13_temperature
sensor_values: [27.5, 28.5, 32, 34]
alt_sensor_values: [28.5, 29, 32, 34]
# Default is 20:00 pm ~ 8:00 am
alt_time_range: [7, 22]
entity_id: fan.fan_dining_room
#service: set_speed
entity_attr: speed
entity_values: [low, medium, high]
复制代码
我加了个manifest.json 也不行,服务没有注册,
{ "domain": "actuator",
"name": "actuator",
"documentation": "https://github.com/Yonsm/HAExtra/blob/master/automations/temperature.yaml",
"dependencies": [],
"codeowners": ["@Yonsm"],
"requirements": []
}