From f086e18c410c4194f91aacee63627baf4330a1c5 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Mon, 5 Jun 2023 21:57:26 -0500 Subject: [PATCH] log pins --- components/ratgdo/ratgdo.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/ratgdo/ratgdo.cpp b/components/ratgdo/ratgdo.cpp index d2fc1f0..50d86dd 100644 --- a/components/ratgdo/ratgdo.cpp +++ b/components/ratgdo/ratgdo.cpp @@ -249,7 +249,8 @@ namespace ratgdo { void RATGDOComponent::printRollingCode() { - ESP_LOGD(TAG, "Send code: %x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x", + ESP_LOGD(TAG, "Counter: %d Send code: %x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x", + this->rollingCodeCounter, this->txRollingCode[0] <= 0x0f ? 0 : this->txRollingCode[0], this->txRollingCode[1] <= 0x0f ? 0 : this->txRollingCode[1], this->txRollingCode[2] <= 0x0f ? 0 : this->txRollingCode[2],