773
|
1 esphome:
|
|
2 name: bed_bar_asher
|
|
3 platform: esp8266
|
|
4 board: esp12e
|
|
5 build_path: build
|
|
6
|
|
7 wifi:
|
|
8 ssid: !secret wifi_ssid
|
|
9 password: !secret wifi_password
|
|
10 domain: ''
|
|
11 use_address: 10.2.0.36
|
|
12
|
|
13 logger:
|
|
14 baud_rate: 115200
|
|
15 level: DEBUG
|
|
16
|
|
17 ota:
|
|
18
|
|
19 mqtt:
|
|
20 broker: '10.2.0.1'
|
|
21 port: 1883
|
|
22 username: ''
|
|
23 password: ''
|
|
24
|
|
25 light:
|
|
26 - platform: fastled_clockless
|
|
27 chipset: WS2812B
|
|
28 pin: GPIO14
|
|
29 num_leds: 38
|
|
30 rgb_order: GRB
|
|
31 name: "strip"
|
|
32
|
|
33 binary_sensor:
|
|
34 - platform: gpio
|
|
35 name: "button 1"
|
|
36 pin:
|
|
37 number: GPIO12
|
|
38 mode: INPUT_PULLUP
|
|
39 inverted: True
|
|
40 filters:
|
|
41 - delayed_off: 10ms
|
|
42 - platform: gpio
|
|
43 name: "button 2"
|
|
44 pin:
|
|
45 number: GPIO10
|
|
46 mode: INPUT_PULLUP
|
|
47 inverted: True
|
|
48 filters:
|
|
49 - delayed_off: 10ms
|
|
50 - platform: gpio
|
|
51 name: "button 3"
|
|
52 pin:
|
|
53 number: GPIO5
|
|
54 mode: INPUT_PULLUP
|
|
55 inverted: True
|
|
56 filters:
|
|
57 - delayed_off: 10ms
|
|
58 - platform: gpio
|
|
59 name: "button 4"
|
|
60 pin:
|
|
61 number: GPIO4
|
|
62 mode: INPUT_PULLUP
|
|
63 inverted: True
|
|
64 filters:
|
|
65 - delayed_off: 10ms
|
|
66
|