mirror of
https://github.com/esphome/esphome.git
synced 2024-11-27 09:18:00 +01:00
fixed missing semicolon
This commit is contained in:
parent
ffd19a21a2
commit
b68755464c
1 changed files with 2 additions and 2 deletions
|
@ -25,9 +25,9 @@ void DHT::dump_config() {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this->use_internal_pullup_ == true) {
|
if (this->use_internal_pullup_ == true) {
|
||||||
ESP_LOGCONFIG(TAG, " Internal pull-up resistor enabled.")
|
ESP_LOGCONFIG(TAG, " Internal pull-up resistor enabled.");
|
||||||
} else {
|
} else {
|
||||||
ESP_LOGCONFIG(TAG, " Internal pull-up resistor disabled.")
|
ESP_LOGCONFIG(TAG, " Internal pull-up resistor disabled.");
|
||||||
}
|
}
|
||||||
|
|
||||||
LOG_UPDATE_INTERVAL(this);
|
LOG_UPDATE_INTERVAL(this);
|
||||||
|
|
Loading…
Reference in a new issue