-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathswitch.yaml
37 lines (26 loc) · 1.46 KB
/
switch.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
#################################################################
## Switches
#################################################################
#################################################################
## Template Switches
#################################################################
##########################################################
## MagicMirror Display Switch
##########################################################
- platform: command_line
switches:
magicmirror_display:
command_on: "curl -X GET 'http://REDACTED.62:8080/api/monitor/on'"
command_off: "curl -X GET 'http://REDACTED.62:8080/api/monitor/off'"
command_state: "curl -X GET http://REDACTED.62:8080/api/monitor/"
value_template: "{{ value_json.monitor == 'on' }}"
##########################################################
## MagicMirror Weekend Chore Switch
##########################################################
# - platform: command_line
# switches:
# magicmirror_weekend_chores_display:
# command_on: "curl -X GET 'http://REDACTED.62:8080/api/module/module_5_MMM-HomeAssistantDisplay/show'"
# command_off: "curl -X GET 'http://REDACTED.62:8080/api/module/module_5_MMM-HomeAssistantDisplay/hide'"
# command_state: "curl -X GET http://REDACTED.62:8080/api/module/module_5_MMM-HomeAssistantDisplay/"
# value_template: "{{ value_json.data[0].hidden == false }}"