From da1c7af92909260f3ff08f9806009f1ed4795a24 Mon Sep 17 00:00:00 2001 From: csawatzky Date: Fri, 19 Dec 2025 13:40:56 -0600 Subject: [PATCH] set the offset for the temp humidity address --- src/pbHelpers/AddressTypes/I2C.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pbHelpers/AddressTypes/I2C.ts b/src/pbHelpers/AddressTypes/I2C.ts index b6bf585..d2f1733 100644 --- a/src/pbHelpers/AddressTypes/I2C.ts +++ b/src/pbHelpers/AddressTypes/I2C.ts @@ -18,7 +18,8 @@ export const I2C: AddressTypeExtension = { [quack.ComponentType.COMPONENT_TYPE_SEN5X, 0x68], [quack.ComponentType.COMPONENT_TYPE_AIRFLOW, 0x6b], [quack.ComponentType.COMPONENT_TYPE_GRAIN_CABLE, 0x70], - [quack.ComponentType.COMPONENT_TYPE_DRAGER_GAS_DONGLE, 0x6c] + [quack.ComponentType.COMPONENT_TYPE_DRAGER_GAS_DONGLE, 0x6c], + [quack.ComponentType.COMPONENT_TYPE_TEMP_HUMIDITY, 0x43] ]); const offset = offsets.get(componentType);