-
Notifications
You must be signed in to change notification settings - Fork 0
/
lights.yaml
executable file
·59 lines (54 loc) · 1.22 KB
/
lights.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
#################################
#
# Living room
#
#################################
# TV light
- platform: mqtt
name: "tv_light"
state_topic: "stat/wz/switch1/POWER"
command_topic: "cmnd/wz/switch1/POWER"
availability_topic: "tele/wz/switch1/LWT"
payload_available: "Online"
payload_not_available: "Offline"
payload_on: "ON"
payload_off: "OFF"
qos: 1
optimistic: false
retain: false
#################################
#
# Floor
#
#################################
# Floor light
- platform: mqtt
name: "floor_light"
state_topic: "stat/floor/switch1/POWER"
command_topic: "cmnd/floor/switch1/POWER"
availability_topic: "tele/floor/switch1/LWT"
payload_available: "Online"
payload_not_available: "Offline"
payload_on: "ON"
payload_off: "OFF"
qos: 1
optimistic: false
retain: false
#################################
#
# Outdoor
#
#################################
# Outdoor: Plantane
- platform: mqtt
name: "plantane"
state_topic: "stat/outdoor/switch1/POWER"
command_topic: "cmnd/outdoor/switch1/POWER"
availability_topic: "tele/outdoor/switch1/LWT"
payload_available: "Online"
payload_not_available: "Offline"
payload_on: "ON"
payload_off: "OFF"
qos: 1
optimistic: false
retain: false