RFID: add support for Kantech IOProx cards (#1261)

This commit is contained in:
Kate Temkin
2022-05-23 07:21:34 -06:00
committed by GitHub
parent 8a81b79e00
commit 522420ec70
19 changed files with 516 additions and 7 deletions

View File

@@ -5,6 +5,7 @@
#include "encoder_emmarin.h"
#include "encoder_hid_h10301.h"
#include "encoder_indala_40134.h"
#include "encoder_ioprox.h"
#include "pulse_joiner.h"
#include <map>
@@ -22,6 +23,7 @@ private:
{LfrfidKeyType::KeyEM4100, new EncoderEM()},
{LfrfidKeyType::KeyH10301, new EncoderHID_H10301()},
{LfrfidKeyType::KeyI40134, new EncoderIndala_40134()},
{LfrfidKeyType::KeyIoProxXSF, new EncoderIoProx()},
};
PulseJoiner pulse_joiner;