mirror of
https://github.com/esphome/esphome.git
synced 2024-12-28 00:11:43 +01:00
fix clang
This commit is contained in:
parent
df37248308
commit
6c36f0c969
1 changed files with 2 additions and 5 deletions
|
@ -22,9 +22,7 @@ void UsbDevice::update() {
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void UsbDevice::dump_config() {
|
void UsbDevice::dump_config() { ESP_LOGCONFIG(TAG, "USB device - configured: %s", YESNO(get_configured_())); }
|
||||||
ESP_LOGCONFIG(TAG, "USB device - configured: %s", YESNO(get_configured_()));
|
|
||||||
}
|
|
||||||
|
|
||||||
#ifdef USE_BINARY_SENSOR
|
#ifdef USE_BINARY_SENSOR
|
||||||
void UsbDevice::set_configured_binary_sensor(binary_sensor::BinarySensor *sensor) { configured_ = sensor; };
|
void UsbDevice::set_configured_binary_sensor(binary_sensor::BinarySensor *sensor) { configured_ = sensor; };
|
||||||
|
@ -52,7 +50,6 @@ bool UsbDevice::get_configured_() {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
} // namespace usb_device
|
} // namespace usb_device
|
||||||
} // namespace esphome
|
} // namespace esphome
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue