Skip to content

Commit bc988e3

Browse files
authored
Update AM2320 documentation with frequency note
Added note about sensor frequency for improved reliability, and allow it to work.
1 parent 7dbc603 commit bc988e3

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

content/components/sensor/am2320.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,26 @@ The `am2320` Temperature+Humidity sensor allows you to use your AM2320
1717
> [!NOTE]
1818
> Logs might include some warnings about receiving a NACK from the sensor.
1919
> This is due to a wake call to the sensor which the sensor never acknowledges by design.
20+
> Sensor works on BUS frequency up to 100kHz, but by default is 200kHz in use. So decrease will help with sensor reliability.
2021
2122
```yaml
2223
# Example configuration entry
24+
i2c:
25+
- id: bus_a
26+
sda: GPIO4
27+
scl: GPIO5
28+
scan: true
29+
frequency: 50000
30+
2331
sensor:
2432
- platform: am2320
33+
i2c_id: bus_a
2534
temperature:
2635
name: "Living Room Temperature"
2736
humidity:
2837
name: "Living Room Humidity"
2938
update_interval: 60s
39+
address: 0x5C
3040
```
3141
3242
## Configuration variables

0 commit comments

Comments
 (0)