I just picked up one of the active RFID packages from Cliste Electronics. It came with a receiver, four 8-meter tags, and two 40 meter tags. The tags each broadcast a unique ID, and when the receiver picks them up, it outputs the ID on the serial port. My intent was to integrate this with the ELK M1 Gold, but the ELK requires received serial data to end with a carriage return. Unfortunately, the device outputs a space after each ID instead. So right now, I'm using socat on a linux box to pull the data in, pipe it through "tr" to convert the spaces to carriage returns, and then pipe it back out another serial interface. It's not optimal, but I'm trying to get the source code for the unit so I can program a new PIC chip that gives me the output I want without having a computer in between.
The other thing I found is this:
https://shop.openpcd.de/index.php?cPath=27&...a31bipdh19t1ae7
These look very interesting, and it gives you RSSI values for position guesstimation. Of course, there's no way I know of in the ELK to perform the logic needed to determine position, just whether or not the tag is in range. So you would need to run it through a script on a linux box to massage the data and tell the ELK what to do with it.
The other thing I found is this:
https://shop.openpcd.de/index.php?cPath=27&...a31bipdh19t1ae7
These look very interesting, and it gives you RSSI values for position guesstimation. Of course, there's no way I know of in the ELK to perform the logic needed to determine position, just whether or not the tag is in range. So you would need to run it through a script on a linux box to massage the data and tell the ELK what to do with it.