From 4cb09e11a5f8ec588282ec7d2fa7924e2d70f0ed Mon Sep 17 00:00:00 2001 From: pmantoine Date: Mon, 26 May 2025 17:12:50 +0800 Subject: [PATCH] Fix comment --- IO_PCA9554.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IO_PCA9554.h b/IO_PCA9554.h index 5369f2b..1eb265d 100644 --- a/IO_PCA9554.h +++ b/IO_PCA9554.h @@ -53,7 +53,7 @@ private: } void _writePortModes() override { - // Write 0 to REG_CONF_P0 & REG_CONF_P1 for in-use pins that are outputs, 1 for others. + // Write 0 to REG_CONF_P0 for in-use pins that are outputs, 1 for others. // PCA9554 & TCA9554, Interrupt is always enabled for raising and falling edge uint8_t temp = ~(_portMode & _portInUse); I2CManager.write(_I2CAddress, 2, REG_CONF_P0, temp);