RFID: Add blank InstaFob detection (#157)

* Added protocols for blank Minutekey InstaFob 

Files based on this video https://youtu.be/Hj7uAKEaFDI?si=6dk4Ny1bTPlO6UZd

* Update lfrfid_protocols.c

Add compatibility with protocol_insta_fob files

* Update lfrfid_protocols.h

Add compatibility for LFRFIDProtocolInstaFob

* Update Samsung.ir

* Revert "Update Samsung.ir"

This reverts commit 94b7bddf27.

* Enum should be at bottom for binary comaptibility

---------

Co-authored-by: Willy-JL <49810075+Willy-JL@users.noreply.github.com>
This commit is contained in:
Sean Skyhawk
2024-07-09 18:41:40 -04:00
committed by GitHub
parent b6831863fc
commit 080435b98b
4 changed files with 381 additions and 0 deletions

View File

@@ -19,6 +19,7 @@
#include "protocol_gallagher.h"
#include "protocol_nexwatch.h"
#include "protocol_securakey.h"
#include "protocol_insta_fob.h"
const ProtocolBase* lfrfid_protocols[] = {
[LFRFIDProtocolEM4100] = &protocol_em4100,
@@ -43,4 +44,5 @@ const ProtocolBase* lfrfid_protocols[] = {
[LFRFIDProtocolGallagher] = &protocol_gallagher,
[LFRFIDProtocolNexwatch] = &protocol_nexwatch,
[LFRFIDProtocolSecurakey] = &protocol_securakey,
[LFRFIDProtocolInstaFob] = &protocol_insta_fob,
};