Skip to content

Commit 43c5aa5

Browse files
authored
Fix KlikAanKlikUit-Switch for DIO remotes (#2789)
Remove first byte id check
1 parent fe43962 commit 43c5aa5

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/devices/newkaku.c

-3
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,6 @@ static int newkaku_callback(r_device *decoder, bitbuffer_t *bitbuffer)
2323
{
2424
uint8_t *b = bitbuffer->bb[0];
2525

26-
if (b[0] != 0x65 && b[0] != 0x59) // always starts with 0110 0101 or 0101 1001
27-
return DECODE_ABORT_EARLY;
28-
2926
/* Reject missing sync */
3027
if (bitbuffer->syncs_before_row[0] != 1)
3128
return DECODE_ABORT_EARLY;

0 commit comments

Comments
 (0)