mirror of
https://github.com/esphome/esphome.git
synced 2024-11-22 06:58:11 +01:00
add missing ifdef to pvvx_mithermometer (#5880)
This commit is contained in:
parent
782854ab36
commit
788f1b60e2
1 changed files with 2 additions and 0 deletions
|
@ -13,7 +13,9 @@ void PVVXDisplay::dump_config() {
|
|||
ESP_LOGCONFIG(TAG, " Service UUID : %s", this->service_uuid_.to_string().c_str());
|
||||
ESP_LOGCONFIG(TAG, " Characteristic UUID : %s", this->char_uuid_.to_string().c_str());
|
||||
ESP_LOGCONFIG(TAG, " Auto clear : %s", YESNO(this->auto_clear_enabled_));
|
||||
#ifdef USE_TIME
|
||||
ESP_LOGCONFIG(TAG, " Set time on connection: %s", YESNO(this->time_ != nullptr));
|
||||
#endif
|
||||
ESP_LOGCONFIG(TAG, " Disconnect delay : %" PRIu32 "ms", this->disconnect_delay_ms_);
|
||||
LOG_UPDATE_INTERVAL(this);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue