From 12ac2004edba6f2da87f7aab38f6088e27dd7d1f Mon Sep 17 00:00:00 2001 From: Midnighter32 <42702583+Midnighter32@users.noreply.github.com> Date: Tue, 8 Oct 2024 12:58:37 +0300 Subject: [PATCH] Update esphome/components/ballu_old/ballu_old.cpp Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com> --- esphome/components/ballu_old/ballu_old.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/esphome/components/ballu_old/ballu_old.cpp b/esphome/components/ballu_old/ballu_old.cpp index b63f44a211..e4565c4e90 100644 --- a/esphome/components/ballu_old/ballu_old.cpp +++ b/esphome/components/ballu_old/ballu_old.cpp @@ -88,9 +88,7 @@ void BalluOldClimate::transmit_state() { for (uint8_t i = 0; i < BALLU_STATE_LENGTH - 1; i++) remote_state[13] += remote_state[i]; - ESP_LOGV(TAG, "Sending: %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X", remote_state[0], - remote_state[1], remote_state[2], remote_state[3], remote_state[4], remote_state[5], remote_state[6], - remote_state[7], remote_state[8], remote_state[9], remote_state[10], remote_state[11], remote_state[12]); + ESP_LOGV(TAG, "Sending: %s", format_hex_pretty(remote_state, BALLU_STATE_LENGTH - 1).c_str()); // Send code auto transmit = this->transmitter_->transmit();