Use cartão RFID no Ubuntu

1

Atualmente, estou trabalhando em aplicativos Java baseados em RFID. Eu não sou capaz de usar o leitor de RFID no meu Ubuntu 14.04. Você pode por favor me avisar se eu tiver que instalar algum pacote ou cabo específico necessário?

    
por Dhaval Simaria 09.11.2014 / 10:37

1 resposta

1

Eu escrevi algumas coisas sobre o aplicativo Python há um ano - como eu me lembro, o programa lê o dispositivo como HIDRAW (Entrada Raw do Human Interface Device). Eu corri o programa da linha de comando

Aqui está um fragmento de código para você:

"""
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
    
por David Walker 09.11.2014 / 13:28