From 39b61997d29c80c116eb8c6c6d07c8fffd27f483 Mon Sep 17 00:00:00 2001 From: Matt Way Date: Tue, 13 Feb 2024 11:51:40 +1100 Subject: [PATCH] Add log message when a packet is received --- src/main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index 51a9f79..94140fa 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -105,6 +105,8 @@ void loop() { } void processPacket(const Packet *packet) { + Serial.println("Got a packet"); + // Update last rolling codes each time a packet from a real hub is detected if (packet->source == 0x0000) { lastRollingCode1 = packet->rollingCode1;