diff --git a/content/components/sensor/am2320.md b/content/components/sensor/am2320.md index b21088ac04..49a32b6578 100644 --- a/content/components/sensor/am2320.md +++ b/content/components/sensor/am2320.md @@ -17,16 +17,26 @@ The `am2320` Temperature+Humidity sensor allows you to use your AM2320 > [!NOTE] > Logs might include some warnings about receiving a NACK from the sensor. > This is due to a wake call to the sensor which the sensor never acknowledges by design. +> Sensor works on BUS frequency up to 100kHz, but by default is 200kHz in use. So decrease will help with sensor reliability. ```yaml # Example configuration entry +i2c: + - id: bus_a + sda: GPIO4 + scl: GPIO5 + scan: true + frequency: 50000 + sensor: - platform: am2320 + i2c_id: bus_a temperature: name: "Living Room Temperature" humidity: name: "Living Room Humidity" update_interval: 60s + address: 0x5C ``` ## Configuration variables