-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscripts.yaml
56 lines (56 loc) · 1.18 KB
/
scripts.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
turn_on_dyson:
alias: Turn On Dyson
sequence:
- data:
entity_id: fan.dyson
night_mode: true
service: dyson.set_night_mode
- data:
entity_id: fan.dyson
speed: 7
service: fan.turn_on
turn_off_dyson:
alias: Turn Off Dyson
sequence:
- data:
entity_id: fan.dyson
night_mode: true
service: dyson.set_night_mode
- data:
entity_id: fan.dyson
auto_mode: true
service: dyson.set_auto_mode
ecobee_sleep:
alias: EcoBee Set For Sleep
sequence:
- data:
target_temp_high: 71
target_temp_low: 68
temperature: 71
entity_id: climate.downstairs
service: climate.set_temperature
- data:
resume_all: true
entity_id: climate.upstairs
service: ecobee.resume_program
ecobee_wake:
alias: EcoBee Wake Up
sequence:
- data:
resume_all: true
entity_id: climate.downstairs
service: ecobee.resume_program
go_bedtime:
alias: Bedtime
sequence:
- data: {}
service: script.turn_on_dyson
- data: {}
service: script.ecobee_sleep
wake_up:
alias: Wake Up
sequence:
- data: {}
service: script.turn_off_dyson
- data: {}
service: script.ecobee_wake