-
Notifications
You must be signed in to change notification settings - Fork 0
/
colorstrips.yaml
63 lines (50 loc) · 1.02 KB
/
colorstrips.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
esphome:
name: "colors-strips"
platform: ESP8266
board: d1_mini
wifi:
ssid: !secret wifi_ssid
password: !secret wifi_pwd
manual_ip:
static_ip: 192.168.50.218
gateway: 192.168.50.1
subnet: 255.255.255.0
captive_portal:
logger:
level: VERBOSE
api:
password: !secret api_pwd
ota:
password: !secret ota_pwd
remote_receiver:
pin:
number: D7
inverted: true
dump:
# - pioneer
- nec
remote_transmitter:
pin: D6
carrier_duty_percent: 50%
button:
- platform: template
name: "Color Strips, red"
id: btn_red
on_press:
- remote_transmitter.transmit_nec:
address: 0xEF00
command: 0xFB04
- platform: template
name: "Color Strips, green"
id: btn_green
on_press:
- remote_transmitter.transmit_nec:
address: 0xEF00
command: 0xFA05
- platform: template
name: "Color Strips, blue"
id: btn_blue
on_press:
- remote_transmitter.transmit_nec:
address: 0xEF00
command: 0xF906