fixed missing semicolon

This commit is contained in:
minomy13 2024-11-13 17:06:00 +01:00
parent ffd19a21a2
commit b68755464c
No known key found for this signature in database

View file

@ -25,9 +25,9 @@ void DHT::dump_config() {
}
if (this->use_internal_pullup_ == true) {
ESP_LOGCONFIG(TAG, " Internal pull-up resistor enabled.")
ESP_LOGCONFIG(TAG, " Internal pull-up resistor enabled.");
} else {
ESP_LOGCONFIG(TAG, " Internal pull-up resistor disabled.")
ESP_LOGCONFIG(TAG, " Internal pull-up resistor disabled.");
}
LOG_UPDATE_INTERVAL(this);