From e3e8c274b0fd7cbb9bd0add7484a52d26bbf1319 Mon Sep 17 00:00:00 2001 From: meijerwynand Date: Sun, 12 Feb 2023 21:18:07 +0100 Subject: [PATCH] Update hdc1080.rst (#2652) HDC1080 library compatible with CHT8305 --- components/sensor/hdc1080.rst | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/components/sensor/hdc1080.rst b/components/sensor/hdc1080.rst index 985231dea..63a1bab14 100644 --- a/components/sensor/hdc1080.rst +++ b/components/sensor/hdc1080.rst @@ -58,6 +58,24 @@ Currently, the platform doesn't support activating the built-in heater, as it seems to only be rarely of use. If you need it, please open an issue. +Notes +-------- + +This library also appears to the compatible with the `DFRobot CHT8305 I2C Temperature and Humidity Sensor `__) on address 0x40. + +.. code-block:: yaml + + # Example configuration entry + sensor: + - platform: hdc1080 + temperature: + name: "Outside Temperature" + humidity: + name: "Outside Humidity" + address: 0x40 + update_interval: 60s + + See Also --------