-
Notifications
You must be signed in to change notification settings - Fork 0
/
air-quality.yaml
executable file
·216 lines (192 loc) · 4.57 KB
/
air-quality.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
esphome:
name: air-quality
friendly_name: Air Quality
platformio_options:
board_build.flash_mode: dio
includes:
- aqi.h
esp32:
board: adafruit_feather_esp32s3
variant: esp32s3
framework:
type: arduino
logger:
level: INFO
# Enable Home Assistant API
api:
encryption:
key: !secret api_key
ota:
password: !secret ota_password
wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password
captive_portal:
i2c:
- id: bus_a
sda: GPIO41
scl: GPIO40
frequency: 50kHz #the PMSA003i seems unhappy at higher speed i2c busses
scan: true
switch:
- platform: gpio
id: neopix_power
restore_mode: ALWAYS_ON
pin: GPIO38
sensor:
# Raw sensor values updated at 1s, but kept internal to be used for
# template sensor values exposed to HA
- platform: pmsa003i
i2c_id: bus_a
address: 0x12
pm_1_0:
id: pm_1_0_raw
pm_2_5:
id: pm_2_5_raw
pm_10_0:
id: pm_10_raw
pmc_0_3:
id: pmc_0_3_raw
pmc_0_5:
id: pmc_0_5_raw
pmc_1_0:
id: pmc_1_0_raw
pmc_2_5:
id: pmc_2_5_raw
pmc_5_0:
id: pmc_5_0_raw
pmc_10_0:
id: pmc_10_0_raw
update_interval: 1s
- platform: template
name: "PM1.0"
id: pm_1_0
device_class: PM1
unit_of_measurement: µg/m³
icon: mdi:grain
update_interval: 1s
filters:
- sliding_window_moving_average:
window_size: 15
send_every: 15
send_first_at: 15
lambda: "return(id(pm_1_0_raw).state);"
- platform: template
name: "PM2.5"
id: pm_2_5
device_class: PM25
icon: mdi:smoke
unit_of_measurement: µg/m³
update_interval: 1s
filters:
- sliding_window_moving_average:
window_size: 15
send_every: 15
send_first_at: 15
lambda: "return(id(pm_2_5_raw).state);"
- platform: template
name: "PM10.0"
id: pm_10
device_class: PM10
icon: mdi:flower-pollen
unit_of_measurement: µg/m³
update_interval: 1s
filters:
- sliding_window_moving_average:
window_size: 15
send_every: 15
send_first_at: 15
lambda: "return(id(pm_10_raw).state);"
- platform: template
name: "PMC <0.3µm"
id: pmc_0_3
update_interval: 1s
filters:
- sliding_window_moving_average:
window_size: 15
send_every: 15
send_first_at: 15
lambda: "return(id(pmc_0_3_raw).state);"
- platform: template
name: "PMC <0.5µm"
id: pmc_0_5
update_interval: 1s
filters:
- sliding_window_moving_average:
window_size: 15
send_every: 15
send_first_at: 15
lambda: "return(id(pmc_0_5_raw).state);"
- platform: template
name: "PMC <1µm"
id: pmc_1_0
update_interval: 1s
filters:
- sliding_window_moving_average:
window_size: 15
send_every: 15
send_first_at: 15
lambda: "return(id(pmc_1_0_raw).state);"
- platform: template
name: "PMC <2.5µm"
id: pmc_2_5
update_interval: 1s
filters:
- sliding_window_moving_average:
window_size: 15
send_every: 15
send_first_at: 15
lambda: "return(id(pmc_2_5_raw).state);"
- platform: template
name: "PMC <5µm"
id: pmc_5_0
update_interval: 1s
filters:
- sliding_window_moving_average:
window_size: 15
send_every: 15
send_first_at: 15
lambda: "return(id(pmc_5_0_raw).state);"
- platform: template
name: "PMC <10µm"
id: pmc_10_0
update_interval: 1s
filters:
- sliding_window_moving_average:
window_size: 15
send_every: 15
send_first_at: 15
lambda: "return(id(pmc_10_0_raw).state);"
- platform: template
name: "AQI"
id: pm2_5_aqi
unit_of_measurement: AQI
device_class: AQI
state_class: measurement
icon: mdi:weather-hazy
accuracy_decimals: 0
filters:
- clamp:
min_value: 0.0
max_value: 500
- sliding_window_moving_average:
window_size: 15
send_every: 15
send_first_at: 15
lambda: |-
float pm2_5 = id(pm_2_5_raw).state;
float pm10 = id(pm_10_raw).state;
float aqi2_5 = get_pm2_5_aqi(pm2_5);
float aqi10 = get_pm10_aqi(pm10);
float aqi = aqi2_5 > aqi10 ? aqi2_5 : aqi10;
ESP_LOGI("AQI", "Computed AQI: %.2f from %.2f PM2.5 and %.2f PM10", aqi, pm2_5, pm10);
return(aqi);
update_interval: 1s
light:
- platform: neopixelbus
id: neopixel_led
type: GRB
variant: WS2812
pin: GPIO39
num_leds: 1
name: "NeoPixel"