forked from syssi/esphome-yeelight-ceiling-light
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yeelight_light_ceiling15.yaml
66 lines (57 loc) · 1.18 KB
/
yeelight_light_ceiling15.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
substitutions:
name: yeelight-light-ceiling15
esphome:
name: ${name}
esp32:
board: esp32doit-devkit-v1
framework:
type: esp-idf
sdkconfig_options:
CONFIG_FREERTOS_UNICORE: y
advanced:
ignore_efuse_mac_crc: true
wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password
ota:
logger:
level: DEBUG
api:
sensor:
- platform: adc
pin: GPIO36
name: "${name} adc1"
attenuation: 11db
- platform: adc
pin: GPIO32
name: "${name} adc2"
attenuation: 11db
output:
- platform: ledc
pin: GPIO19
id: output_warm
- platform: ledc
pin: GPIO21
id: output_cold
- platform: ledc
pin: GPIO23
id: output_nightlight
light:
- platform: monochromatic
name: "${name} night light"
id: night_light
output: output_nightlight
gamma_correct: 0
on_turn_on:
- light.turn_off: ceiling_light
- platform: cwww
name: "${name} ceiling light"
id: ceiling_light
cold_white: output_cold
warm_white: output_warm
cold_white_color_temperature: 6500 K
warm_white_color_temperature: 2700 K
constant_brightness: true
gamma_correct: 0
on_turn_on:
- light.turn_off: night_light