forked from sfgabe/home_assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
light.yaml
executable file
·114 lines (107 loc) · 2.23 KB
/
light.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
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
- platform: template
lights:
#kiosk
dashboard_screen:
friendly_name: "Kiosk"
turn_on:
service: rest_command.kiosk_screen_on
turn_off:
service: rest_command.kiosk_screen_off
set_level:
service: script.kiosk_screen_value
data_template:
brightness: "{{ brightness }}"
tablet_screen:
friendly_name: "Tablet Screen"
turn_on:
service: rest_command.tablet_screen_on
turn_off:
service: rest_command.tablet_screen_off
set_level:
service: script.tablet_screen_value
data_template:
brightness: "{{ brightness }}"
et_figure:
friendly_name: "ET Figure"
turn_on:
service: script.et_lightshow
turn_off:
service: script.et_off
#entry light
- platform: switch
name: "Entry Light"
entity_id: switch.entry_light
#kitchen light
- platform: switch
name: "Kitchen Overhead Light"
entity_id: switch.10048470bcddc2e0d678
#thundercloud
- platform: mqtt
schema: json
command_topic: "thundercloud/reading/set"
state_topic: "thundercloud/reading/current"
name: "Thundercloud"
optimistic: true
retain: true
brightness: true
effect: true
rgb: true
effect_list:
- "solid"
- "rainbow"
- "rainbow with glitter"
- "candy cane"
- "bpm"
- "confetti"
- "noise"
- "ripple"
- "fire"
- "twinkle"
- "lightning"
- "dots"
- "glitter"
- "juggle"
- "police all"
#flux_capacitor
- platform: mqtt
schema: json
command_topic: "flux-capacitor/set"
state_topic: "flux-capacitor/current"
name: "Flux Capacitor"
optimistic: true
retain: true
brightness: true
effect: true
rgb: true
effect_list:
- "solid"
- "flux"
- "rainbow"
- "rainbow with glitter"
- "candy cane"
- "bpm"
- "confetti"
- "noise"
- "ripple"
- "fire"
- "twinkle"
- "lightning"
- "dots"
- "glitter"
- "juggle"
- "police all"
#Big O Light
- platform: mqtt
schema: json
name: "Big O"
state_topic: "big_o/reading/current"
command_topic: "big_o/reading/set"
brightness: true
rgb: true
effect: true
effect_list:
- "colorfade_slow"
- "colorfade_fast"
- "flash"
optimistic: false
qos: 0