-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
yeelight_light_ceiling24.yaml
61 lines (51 loc) · 1.19 KB
/
yeelight_light_ceiling24.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
# configuration based on:
# - https://github.com/syssi/esphome-yeelight-ceiling-light/blob/main/yeelight_light_ceiling15.yaml
substitutions:
name: yeelight-light-ceiling24
esphome:
name: ${name}
min_version: 2024.10.0
esp32:
board: esp32doit-devkit-v1
framework:
type: esp-idf
sdkconfig_options:
CONFIG_FREERTOS_UNICORE: y
advanced:
ignore_efuse_mac_crc: true
ignore_efuse_custom_mac: true
wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password
ota:
platform: esphome
logger:
level: DEBUG
api:
sensor:
- platform: adc
pin: GPIO32
name: "${name} adc1"
attenuation: 12db
- platform: adc
pin: GPIO33
name: "${name} adc2"
attenuation: 12db
output:
- platform: ledc
pin: GPIO19
id: output_warm
- platform: ledc
pin: GPIO21
id: output_cold
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
# disabling constant_brightness makes color temperature transition smooth without brightness dips
# constant_brightness: true
gamma_correct: 0