Skip to content

Instantly share code, notes, and snippets.

@hsiboy
Created March 17, 2014 12:59
Show Gist options
  • Star 25 You must be signed in to star a gist
  • Fork 13 You must be signed in to fork a gist
  • Save hsiboy/9598741 to your computer and use it in GitHub Desktop.
Save hsiboy/9598741 to your computer and use it in GitHub Desktop.
Wiegand API for Raspberry Pi
/*
* Wiegand API Raspberry Pi
* By Kyle Mallory All rights reserved.
* 12/01/2013
* Based on previous code by Daniel Smith (www.pagemac.com) and Ben Kent (www.pidoorman.com)
* Depends on the wiringPi library by Gordon Henterson: https://projects.drogon.net/raspberry-pi/wiringpi/
*
* This is linked with -lpthread -lwiringPi -lrt
*
* The Wiegand interface has two data lines, DATA0 and DATA1. These lines are normall held
* high at 5V. When a 0 is sent, DATA0 drops to 0V for a few µs. When a 1 is sent, DATA1 drops
* to 0V for a few µs. There are a few ms between the pulses.
*
* *************
* * IMPORTANT *
* *************
*
* The Raspberry Pi GPIO pins are 3.3V, NOT 5V. Please take appropriate precautions to bring the
* 5V Data 0 and Data 1 voltges down. I used a 330 ohm resistor and 3V3 Zenner diode for each
* connection. FAILURE TO DO THIS WILL PROBABLY BLOW UP THE RASPBERRY PI!
*
*/
#include <stdio.h>
#include <stdlib.h>
#include <wiringPi.h>
#include <time.h>
#include <unistd.h>
#include <memory.h>
#define D0_PIN 0
#define D1_PIN 1
#define WIEGANDMAXDATA 32
#define WIEGANDTIMEOUT 3000000
static unsigned char __wiegandData[WIEGANDMAXDATA]; // can capture upto 32 bytes of data -- FIXME: Make this dynamically allocated in init?
static unsigned long __wiegandBitCount; // number of bits currently captured
static struct timespec __wiegandBitTime; // timestamp of the last bit received (used for timeouts)
void data0Pulse(void) {
if (__wiegandBitCount / 8 < WIEGANDMAXDATA) {
__wiegandData[__wiegandBitCount / 8] <<= 1;
__wiegandBitCount++;
}
clock_gettime(CLOCK_MONOTONIC, &__wiegandBitTime);
}
void data1Pulse(void) {
if (__wiegandBitCount / 8 < WIEGANDMAXDATA) {
__wiegandData[__wiegandBitCount / 8] <<= 1;
__wiegandData[__wiegandBitCount / 8] |= 1;
__wiegandBitCount++;
}
clock_gettime(CLOCK_MONOTONIC, &__wiegandBitTime);
}
int wiegandInit(int d0pin, int d1pin) {
// Setup wiringPi
wiringPiSetup() ;
pinMode(d0pin, INPUT);
pinMode(d1pin, INPUT);
wiringPiISR(d0pin, INT_EDGE_FALLING, data0Pulse);
wiringPiISR(d1pin, INT_EDGE_FALLING, data1Pulse);
}
void wiegandReset() {
memset((void *)__wiegandData, 0, WIEGANDMAXDATA);
__wiegandBitCount = 0;
}
int wiegandGetPendingBitCount() {
struct timespec now, delta;
clock_gettime(CLOCK_MONOTONIC, &now);
delta.tv_sec = now.tv_sec - __wiegandBitTime.tv_sec;
delta.tv_nsec = now.tv_nsec - __wiegandBitTime.tv_nsec;
if ((delta.tv_sec > 1) || (delta.tv_nsec > WIEGANDTIMEOUT))
return __wiegandBitCount;
return 0;
}
/*
* wiegandReadData is a simple, non-blocking method to retrieve the last code
* processed by the API.
* data : is a pointer to a block of memory where the decoded data will be stored.
* dataMaxLen : is the maximum number of -bytes- that can be read and stored in data.
* Result : returns the number of -bits- in the current message, 0 if there is no
* data available to be read, or -1 if there was an error.
* Notes : this function clears the read data when called. On subsequent calls,
* without subsequent data, this will return 0.
*/
int wiegandReadData(void* data, int dataMaxLen) {
if (wiegandGetPendingBitCount() > 0) {
int bitCount = __wiegandBitCount;
int byteCount = (__wiegandBitCount / 8) + 1;
memcpy(data, (void *)__wiegandData, ((byteCount > dataMaxLen) ? dataMaxLen : byteCount));
wiegandReset();
return bitCount;
}
return 0;
}
void printCharAsBinary(unsigned char ch) {
int i;
for (i = 0; i < 8; i++) {
printf("%d", (ch & 0x80) ? 1 : 0);
ch <<= 1;
}
}
void main(void) {
int i;
wiegandInit(D0_PIN, D1_PIN);
while(1) {
int bitLen = wiegandGetPendingBitCount();
if (bitLen == 0) {
usleep(5000);
} else {
char data[100];
bitLen = wiegandReadData((void *)data, 100);
int bytes = bitLen / 8 + 1;
printf("Read %d bits (%d bytes): ", bitLen, bytes);
for (i = 0; i < bytes; i++)
printf("%02X", (int)data[i]);
printf(" : ");
for (i = 0; i < bytes; i++)
printCharAsBinary(data[i]);
printf("\n");
}
}
}
@hu55a1n1
Copy link

hu55a1n1 commented Aug 9, 2015

Thanks for sharing this!

@brianredbeard
Copy link

Just in case anyone needs the pointer on how to build this:

gcc -o wiegand -lpthread -lwiringPi -lrt wiegand.c

@antunjm
Copy link

antunjm commented Jun 17, 2018

Thanks a Lot !

@4wheelrider
Copy link

Can this be made to work with a 64 bit wiegand reader?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment