From a96c30ea2cddfb6f997032d6a1e3e6f6bc88ce2c Mon Sep 17 00:00:00 2001 From: sdmueller Date: Thu, 11 Dec 2025 14:19:47 +0100 Subject: [PATCH] Update delay for sleep command Match with delay from datasheet --- sensirion_i2c_stcc4/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sensirion_i2c_stcc4/commands.py b/sensirion_i2c_stcc4/commands.py index 799f75e..7b042bb 100644 --- a/sensirion_i2c_stcc4/commands.py +++ b/sensirion_i2c_stcc4/commands.py @@ -217,7 +217,7 @@ class EnterSleepMode(Transfer): def pack(self): return self.tx_data.pack([]) - tx = TxData(CMD_ID, '>H', device_busy_delay=0.002, slave_address=None, ignore_ack=False) + tx = TxData(CMD_ID, '>H', device_busy_delay=0.001, slave_address=None, ignore_ack=False) class ExitSleepMode(Transfer):