Mercurial > code > home > repos > homeauto
annotate service/rdf_to_mqtt/h801/config_skylight.yaml @ 1745:d90cb7c06f15
try to crash if mqtt doesn't connect
author | drewp@bigasterisk.com |
---|---|
date | Thu, 09 Nov 2023 17:21:59 -0800 |
parents | fdddbdaf07b5 |
children |
rev | line source |
---|---|
396 | 1 substitutions: |
597
e1ee6661329a
adjust kitchen PWM freqs. add comments and proposed contents of n3 configs
drewp@bigasterisk.com
parents:
396
diff
changeset
|
2 pwm_freq: 310 Hz |
396 | 3 |
4 esphomeyaml: | |
5 name: h801_skylight | |
6 platform: ESP8266 | |
7 board: esp8285 | |
8 build_path: build | |
9 | |
10 wifi: | |
11 ssid: !secret wifi_ssid | |
12 password: !secret wifi_password | |
13 manual_ip: | |
14 static_ip: 10.2.0.67 | |
15 gateway: 10.2.0.1 | |
16 subnet: 255.255.255.0 | |
17 | |
18 mqtt: | |
19 broker: '10.2.0.1' | |
20 port: 1883 | |
21 | |
22 logger: | |
23 baud_rate: 115200 | |
24 | |
25 ota: | |
26 | |
27 output: | |
28 - id: pwm_b | |
29 platform: esp8266_pwm | |
30 pin: 12 | |
31 frequency: ${pwm_freq} | |
32 - id: pwm_r | |
33 platform: esp8266_pwm | |
34 pin: 13 | |
35 frequency: ${pwm_freq} | |
36 - id: pwm_g | |
37 platform: esp8266_pwm | |
38 pin: 15 | |
39 frequency: ${pwm_freq} | |
40 - id: pwm_w1 | |
41 platform: esp8266_pwm | |
42 pin: 14 | |
43 frequency: ${pwm_freq} | |
44 - id: pwm_w2 | |
45 platform: esp8266_pwm | |
46 pin: 4 | |
47 frequency: ${pwm_freq} | |
48 | |
49 light: | |
50 - platform: monochromatic | |
51 name: "Kit_r" | |
52 output: pwm_r | |
53 - platform: monochromatic | |
54 name: "Kit_g" | |
55 output: pwm_g | |
56 - platform: monochromatic | |
57 name: "Kit_b" | |
58 output: pwm_b | |
59 - platform: monochromatic | |
60 name: "Kit_w1" | |
61 output: pwm_w1 | |
62 - platform: monochromatic | |
63 name: "Kit_w2" | |
64 output: pwm_w2 |