From f7cd08c767d950a18339298753d50e689d6cb96b Mon Sep 17 00:00:00 2001 From: Frank <91616163+softhack007@users.noreply.github.com> Date: Mon, 7 Aug 2023 18:07:24 +0200 Subject: [PATCH] small correction --- usermods/audioreactive/audio_source.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usermods/audioreactive/audio_source.h b/usermods/audioreactive/audio_source.h index 7101fe09..c46e6f17 100644 --- a/usermods/audioreactive/audio_source.h +++ b/usermods/audioreactive/audio_source.h @@ -461,7 +461,7 @@ public: return; } if (!pinManager.joinWire()) { // WLEDMM specific: start I2C with globally defined pins - ERRORSR_PRINTF("\nAR: failed to start I2C bus with SDA=%d, SCL=%d\n", i2c_sda, i2c_scl); + ERRORSR_PRINTF("\nAR: failed to join I2C bus with SDA=%d, SCL=%d\n", i2c_sda, i2c_scl); return; } @@ -588,7 +588,7 @@ class ES8388Source : public I2SSource { return; } if (!pinManager.joinWire()) { // WLEDMM specific: start I2C with globally defined pins - ERRORSR_PRINTF("\nAR: failed to start I2C bus with SDA=%d, SCL=%d\n", i2c_sda, i2c_scl); + ERRORSR_PRINTF("\nAR: failed to join I2C bus with SDA=%d, SCL=%d\n", i2c_sda, i2c_scl); return; }