-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfiguration.yaml
70 lines (65 loc) · 2.22 KB
/
configuration.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
# Attention: This file is for development purpose only and can be ignored.
# https://www.home-assistant.io/integrations/default_config/
default_config:
# https://www.home-assistant.io/integrations/logger/
logger:
default: info
logs:
custom_components.lightener: debug
# Create a few fake lights take can be used in ha to create Lightener lights.
light:
- platform: template
lights:
on_off_light_1:
friendly_name: "ON-OFF Light 1"
turn_on:
turn_off:
on_off_light_2:
friendly_name: "ON-OFF Light 2"
turn_on:
turn_off:
living_room_ceiling:
friendly_name: "Living Room Ceiling Lights"
turn_on:
turn_off:
set_level:
living_room_ceiling_leds:
friendly_name: "Living Room Ceiling Leds"
turn_on:
turn_off:
set_level:
living_room_sofa_lamp:
friendly_name: "Living Room Sofa Lamp"
turn_on:
turn_off:
set_level:
set_rgb:
issue_97_ceiling:
friendly_name: "Ceiling"
turn_on:
turn_off:
issue_97_lamp:
friendly_name: "Lamp"
turn_on:
turn_off:
set_level:
# This is the Lightener v1 configuration example.
# Although *still* supported it has been replaced by UI configuration with v2.
#
# - platform: lightener
# lights:
# # This defines the entity id of your virtual light ("light.living_room_v1").
# living_room_v1:
# ## The display name of your virtual light (optional).
# friendly_name: "Living Room Lightened"
# ## The list of the existing light entities that will be managed by the virtual light.
# entities:
# light.living_room_ceiling_leds:
# 80: 100 # At 80% (room) the leds will reach 100% brightness.
# light.living_room_sofa_lamp:
# 20: 0 # At 20% (room) the sofa light is still off.
# 60: 100 # At 60% (room) the sofa light reaches 100% brightness.
# light.living_room_ceiling:
# 60: 0 # At 60% (room) the main ceiling light is still off.
# # 100: 100 ... no need for this as it is de default.
# # As many virtual lights as you want can be added here.