From 79ffe021e42331d2268824883ba5784f7c821ee7 Mon Sep 17 00:00:00 2001 From: Gabriel Sieben Date: Tue, 21 May 2024 11:41:57 +0200 Subject: [PATCH] Update usermod_bme68x.h One error message was in German --- usermods/BME68X_v2/usermod_bme68x.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usermods/BME68X_v2/usermod_bme68x.h b/usermods/BME68X_v2/usermod_bme68x.h index abf4fc861..8e360515a 100644 --- a/usermods/BME68X_v2/usermod_bme68x.h +++ b/usermods/BME68X_v2/usermod_bme68x.h @@ -329,7 +329,7 @@ void UsermodBME68X::setup() { /* Check, if i2c is activated */ if (i2c_scl < 0 || i2c_sda < 0) { settings.enabled = false; // Disable usermod once i2c is not running - DEBUG_PRINTLN(F(UMOD_DEBUG_NAME "I2C ist nicht aktiviert. Bitte I2C zuerst aktivieren." FAIL)); + DEBUG_PRINTLN(F(UMOD_DEBUG_NAME "I2C is not activated. Please activate I2C first." FAIL)); return; }