Namespace call to delay

Upstream library changes made calls to delay become ambiguous. Force to
the esphome version, even though we declared namespace esphome already.
This commit is contained in:
Geoff Davis 2021-10-23 13:07:38 -05:00
parent 299d1ad45a
commit ad65768860

View File

@ -258,7 +258,7 @@ void MitsubishiHeatPump::hpSettingsChanged() {
* mode, but that isn't working right yet. * mode, but that isn't working right yet.
*/ */
ESP_LOGW(TAG, "Waiting for HeatPump to read the settings the first time."); ESP_LOGW(TAG, "Waiting for HeatPump to read the settings the first time.");
delay(10); esphome::delay(10);
return; return;
} }