2021-04-28 12:13:25 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
class WIEGAND {
|
|
|
|
public:
|
|
|
|
WIEGAND();
|
|
|
|
void begin();
|
2021-05-24 09:57:14 +00:00
|
|
|
void end();
|
2021-04-28 12:13:25 +00:00
|
|
|
bool available();
|
|
|
|
unsigned long getCode();
|
|
|
|
unsigned long getCodeHigh();
|
|
|
|
int getWiegandType();
|
|
|
|
|
|
|
|
static void ReadD0();
|
|
|
|
static void ReadD1();
|
|
|
|
|
|
|
|
private:
|
|
|
|
static bool DoWiegandConversion();
|
|
|
|
static unsigned long
|
|
|
|
GetCardId(volatile unsigned long* codehigh, volatile unsigned long* codelow, char bitlength);
|
|
|
|
|
|
|
|
static volatile unsigned long _cardTempHigh;
|
|
|
|
static volatile unsigned long _cardTemp;
|
|
|
|
static volatile unsigned long _lastWiegand;
|
|
|
|
static volatile int _bitCount;
|
|
|
|
static int _wiegandType;
|
|
|
|
static unsigned long _code;
|
|
|
|
static unsigned long _codeHigh;
|
|
|
|
};
|