Update ens160_base.cpp – fix wrong double negative (#8639)

This commit is contained in:
Steffen Banhardt 2025-04-28 21:18:46 +02:00 committed by GitHub
parent d2ee2d3b23
commit 3291a11824
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -187,7 +187,7 @@ void ENS160Component::update() {
} }
return; return;
case INVALID_OUTPUT: case INVALID_OUTPUT:
ESP_LOGE(TAG, "ENS160 Invalid Status - No Invalid Output"); ESP_LOGE(TAG, "ENS160 Invalid Status - No valid output");
this->status_set_warning(); this->status_set_warning();
return; return;
} }