File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed
content/components/sensor Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff 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+
2331sensor :
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
You can’t perform that action at this time.
0 commit comments