From 43c5aa54f8cd8c6e8bdab860e55128148bf183d8 Mon Sep 17 00:00:00 2001 From: apaneiro <71491592+apaneiro@users.noreply.github.com> Date: Wed, 24 Jan 2024 18:56:44 +0000 Subject: [PATCH] Fix KlikAanKlikUit-Switch for DIO remotes (#2789) Remove first byte id check --- src/devices/newkaku.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/devices/newkaku.c b/src/devices/newkaku.c index 5dcae87f9..77c3c48a5 100644 --- a/src/devices/newkaku.c +++ b/src/devices/newkaku.c @@ -23,9 +23,6 @@ static int newkaku_callback(r_device *decoder, bitbuffer_t *bitbuffer) { uint8_t *b = bitbuffer->bb[0]; - if (b[0] != 0x65 && b[0] != 0x59) // always starts with 0110 0101 or 0101 1001 - return DECODE_ABORT_EARLY; - /* Reject missing sync */ if (bitbuffer->syncs_before_row[0] != 1) return DECODE_ABORT_EARLY;