在 Ubuntu 上使用 RFID 卡

在 Ubuntu 上使用 RFID 卡

我目前正在开发基于 RFID 的 Java 应用程序。我无法在 Ubuntu 14.04 上使用 RFID 阅读器。您能否告诉我是否需要安装任何软件包或任何特定电缆?

答案1

一年前我写了一些 Python 应用程序 - 我记得,该程序将设备读取为 HIDRAW(人机接口设备原始输入)。我从命令行运行该程序

以下是一段代码:

"""
A class to represent an RFID tag.
Reads an RFID tag from the serial port but checks that the port is available.
"""
import sys

class Rfidtag:
    def __init__(self, timeout):
        '''
        initialise the Serial port
        N.B. use ttyAMA0 for GPIO serial port
        \param timeout: (optional)
        '''
        try:
            import serial
        except ImportError:
            print 'No serial port found'
            sys.exit()
        else:
            self.ser = serial.Serial('/dev/ttyUSB0', 9600, timeout=timeout)

    def read(self):
        '''
        Read a tag from the serial port. 
        '''
        string = self.ser.read(16) # read the full tag id from the reader
        if len(string) != 0:
            string = string[1:11]  # exclude start x0A and stop x0D bytes
        return string

相关内容