From 1a99e041508858774200edfd9a94b7b37c617ce0 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 14:23:40 +0100 Subject: [PATCH] Update mcp4461.cpp --- esphome/components/mcp4461/mcp4461.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/mcp4461/mcp4461.cpp b/esphome/components/mcp4461/mcp4461.cpp index 9408acd033..6cbf53657b 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -54,7 +54,7 @@ void Mcp4461Component::dump_config() { // get_status_register() will automatically check, if D8 bit (locked to 1) is 1 and bail out using error-routine otherwise uint8_t status_register_value; status_register_value = this->get_status_register(); - ESP_LOGCONFIG(TAG, "MCP4461 status register: , D7: %" PRIu8 ", WL3: %" PRIu8 ", WL2: %" PRIu8 ", EEWA: %" PRIu8 ", WL1: %" PRIu8 ", WP: %" PRIu8 ", + ESP_LOGCONFIG(TAG, "MCP4461 status register: , D7: %" PRIu8 ", WL3: %" PRIu8 ", WL2: %" PRIu8 ", EEWA: %" PRIu8 ", WL1: %" PRIu8 ", WP: %" PRIu8 "", ((status_register_value >> 7) & 0x01), ((status_register_value >> 6) & 0x01), ((status_register_value >> 5) & 0x01),