-
Notifications
You must be signed in to change notification settings - Fork 151
/
athom-ls-4p-3wire.yaml
89 lines (73 loc) · 1.68 KB
/
athom-ls-4p-3wire.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
substitutions:
name: "athom-ls-4p-3wire"
friendly_name: "Athom LED Controller"
project_name: "athom.ls-4p-3wire"
project_version: "1.0"
button_toggle: "true"
led_restore_mode: RESTORE_DEFAULT_OFF
number_of_leds: '150'
led_rgb_order: GRB
led_chipset: WS2811
esphome:
name: "${name}"
name_add_mac_suffix: true
project:
name: "${project_name}"
version: "${project_version}"
esp8266:
board: esp01_1m
restore_from_flash: true
framework:
version: 2.7.4
api:
ota:
logger:
web_server:
port: 80
wifi:
ap: {} # This spawns an AP with the device name and mac address with no password.
captive_portal:
dashboard_import:
package_import_url: github://athom-tech/athom-configs/athom-ls-4p-3wire.yaml
binary_sensor:
- platform: status
name: "${friendly_name} Status"
- platform: gpio
name: "${friendly_name} Button"
pin:
number: GPIO0
inverted: true
on_click:
- if:
condition:
lambda: "return ${button_toggle} == true;"
then:
- light.toggle: leds
sensor:
- platform: uptime
name: "${friendly_name} Uptime"
button:
- platform: restart
id: restart_button
name: "${friendly_name} Restart"
power_supply:
- id: relay
pin: GPIO12
light:
- platform: fastled_clockless
pin: GPIO1
id: leds
name: "${friendly_name}"
power_supply: relay
chipset: ${led_chipset}
num_leds: ${number_of_leds}
rgb_order: ${led_rgb_order}
restore_mode: ${led_restore_mode}
effects:
- addressable_rainbow:
- addressable_scan:
text_sensor:
- platform: wifi_info
ip_address:
name: "${friendly_name} IP Address"
disabled_by_default: true