Update usermod_bme68x.h

One error message was in German
This commit is contained in:
Gabriel Sieben 2024-05-21 11:41:57 +02:00 committed by GitHub
parent 63f481d498
commit 79ffe021e4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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;
}