From 453d627800bce85ea510bdc36a75498a53e5bd42 Mon Sep 17 00:00:00 2001 From: Marcel Koonstra Date: Mon, 30 Dec 2024 16:08:01 +0100 Subject: [PATCH] Fix --- esphome/components/obd/obd_component.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {