summaryrefslogtreecommitdiffstats
path: root/custom/scripts/sleep-and-wake.yaml
blob: c8e180d3e39baef9e247cf6e1d07782d1b3d37c0 (plain)
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
sleep_and_wake:
  alias: "Sleep and Wake"
  description: "Sleep, Hibernate, and Wake actions for Office and Complete House"
  fields:
    mode:
      name: Mode
      description: "Operation mode: Sleep is non-intrusive action while Hibernate aimed on maximum power-savings and security"
      required: true
      selector:
        select:
          options:
            - hibernate
            - sleep
            - wake
    target:
      name: Target
      description: "Area: Office or complete House (more areas might be added in future)"
      required: true
      selector:
        select:
          options:
            - office
            - house

  mode: single

  sequence:
    - choose:
        - conditions:
            - condition: template
              value_template: '{{ target == "office" }}'
          sequence:
            - choose:
                - conditions:
                    - condition: template
                      value_template: '{{ mode == "sleep" }}'
                  sequence:
                    - parallel:
                        - service: switch.turn_off
                          target:
                            entity_id: switch.smart_power_strip_pro_socket_1
                        - service: switch.turn_off
                          target:
                            entity_id: switch.living_lights_right
                        - service: input_boolean.turn_on
                          target:
                            entity_id: input_boolean.mode_office_sleep

                - conditions:
                    - condition: template
                      value_template: '{{ mode == "hibernate" }}'
                  sequence:
                    - parallel:
                        - service: media_player.media_pause
                          target:
                            entity_id: media_player.smartpi
# Wait until we fix both sleep and WOL on laptop
#                        - service: switch.turn_off
#                          target:
#                            entity_id: switch.plugs_office
                        - service: switch.turn_off
                          target:
                            entity_id: switch.smart_power_strip_pro_socket_1
                        - service: switch.turn_off
                          target:
                            entity_id: switch.living_lights_right
                        - service: input_boolean.turn_on
                          target:
                            entity_id:
                              - input_boolean.mode_office_sleep
                              - input_boolean.mode_office_hibernate


                - conditions:
                    - condition: template
                      value_template: '{{ mode == "wake" }}'
                  sequence:
                    - parallel:
                        - service: switch.turn_on
                          target:
                            entity_id: switch.plugs_office
                    - service: wake_on_lan.send_magic_packet
                      data:
                        mac: "e8:6a:64:7b:5d:0a"
                    - delay:
                        seconds: 2
                    - service: wake_on_lan.send_magic_packet
                      data:
                        mac: "e8:6a:64:7b:5d:0a"
                    - service: input_boolean.turn_off
                      target:
                        entity_id:
                          - input_boolean.mode_office_sleep
                          - input_boolean.mode_office_hibernate


        - conditions:
            - condition: template
              value_template: '{{ target == "house" }}'
          sequence:
            - choose:
                - conditions:
                    - condition: template
                      value_template: '{{ mode == "sleep" }}'
                  sequence:
                    - parallel:
# Wait until we fix both sleep and WOL on laptop
#                        - service: switch.turn_off
#                          target:
#                            entity_id: switch.plugs_office
                        - service: media_player.media_pause
                          target:
                            entity_id: media_player.smartpi
                        - service: switch.turn_off
                          target:
                            entity_id: switch.smart_power_strip_pro_socket_1
                        - service: switch.turn_off
                          target:
                            entity_id: switch.lights_all
# Don't do it here, but rather separately when leaving extended home zone
#                        - service: switch.turn_on
#                          target:
#                            entity_id: switch.hall_lights_right
                    - service: input_boolean.turn_on
                      target:
                        entity_id:
                          - input_boolean.mode_house_sleep
                          - input_boolean.mode_office_sleep
                          - input_boolean.mode_office_hibernate

                - conditions:
                    - condition: template
                      value_template: '{{ mode == "hibernate" }}'
                  sequence:
                    - service: switch.turn_off
                      target:
                        entity_id:
                          - switch.lights_all
                          - switch.plugs_manual
                          - switch.plugs_controlled
                    # Thats a better way to allow some time for leaving
                    - service: switch.turn_on
                      target:
                        entity_id: switch.hall_lights_right
                    - service: input_boolean.turn_on
                      target:
                        entity_id: 
                          - input_boolean.mode_office_sleep
                          - input_boolean.mode_office_hibernate
                          - input_boolean.mode_house_sleep
                          - input_boolean.mode_house_hibernate

                - conditions:
                    - condition: template
                      value_template: '{{ mode == "wake" }}'
                  sequence:
                    - service: switch.turn_on
                      target:
                        entity_id:
                          - switch.plugs_kitchen
                          - switch.bedroom_bedsidelampsocket
                    - service: input_boolean.turn_off
                      target:
                        entity_id:
                          - input_boolean.mode_house_sleep
                          - input_boolean.mode_house_hibernate