diff --git a/esphome/components/obd/obd_component.cpp b/esphome/components/obd/obd_component.cpp index 0e66e5104b..8a7be1a4f9 100644 --- a/esphome/components/obd/obd_component.cpp +++ b/esphome/components/obd/obd_component.cpp @@ -125,7 +125,7 @@ void PIDRequest::handle_incoming(std::vector &data) { if (this->state_ != POLLING) return; // Not our cup of tea here, some other pid might be polling on the same can_id - ESP_LOGD(TAG, "recieved content for pid 0x%04x: %s", this->can_id_, this->pid_, format_hex_pretty(data).c_str()); + ESP_LOGD(TAG, "recieved content for pid 0x%04x: %s", this->pid_, format_hex_pretty(data).c_str()); // Handle the data if ((data[0] & 0xF0) == 0x10) {