IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Python Discussion :

afficher la table de mémoire de mon RFID avec la librairie MRFC522


Sujet :

Python

  1. #1
    Membre éprouvé

    Profil pro
    Inscrit en
    Août 2008
    Messages
    1 222
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Août 2008
    Messages : 1 222
    Par défaut afficher la table de mémoire de mon RFID avec la librairie MRFC522
    Bonjour voici la librairie de mrfc

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
     
    from machine import Pin, SPI
    from os import uname
     
    class MFRC522:
     
        DEBUG = False
        OK = 0
        NOTAGERR = 1
        ERR = 2
     
        REQIDL = 0x26
        REQALL = 0x52
        AUTHENT1A = 0x60
        AUTHENT1B = 0x61
     
        PICC_ANTICOLL1 = 0x93
        PICC_ANTICOLL2 = 0x95
        PICC_ANTICOLL3 = 0x97
     
     
        def __init__(self, sck, mosi, miso, rst, cs,baudrate=1000000,spi_id=0):
     
            self.sck = Pin(sck, Pin.OUT)
            self.mosi = Pin(mosi, Pin.OUT)
            self.miso = Pin(miso)
            self.rst = Pin(rst, Pin.OUT)
            self.cs = Pin(cs, Pin.OUT)
     
            self.rst.value(0)
            self.cs.value(1)
     
            board = uname()[0]
     
            if board == 'WiPy' or board == 'LoPy' or board == 'FiPy':
                self.spi = SPI(0)
                self.spi.init(SPI.MASTER, baudrate=1000000, pins=(self.sck, self.mosi, self.miso))
            elif (board == 'esp8266') or (board == 'esp32'):
                self.spi = SPI(baudrate=100000, polarity=0, phase=0, sck=self.sck, mosi=self.mosi, miso=self.miso)
                self.spi.init()
            elif board == 'rp2':
                self.spi = SPI(spi_id,baudrate=baudrate,sck=self.sck, mosi= self.mosi, miso= self.miso)
            else:
                raise RuntimeError("Unsupported platform")
     
            self.rst.value(1)
            self.init()
     
        def _wreg(self, reg, val):
     
            self.cs.value(0)
            self.spi.write(b'%c' % int(0xff & ((reg << 1) & 0x7e)))
            self.spi.write(b'%c' % int(0xff & val))
            self.cs.value(1)
     
        def _rreg(self, reg):
     
            self.cs.value(0)
            self.spi.write(b'%c' % int(0xff & (((reg << 1) & 0x7e) | 0x80)))
            val = self.spi.read(1)
            self.cs.value(1)
     
            return val[0]
     
        def _sflags(self, reg, mask):
            self._wreg(reg, self._rreg(reg) | mask)
     
        def _cflags(self, reg, mask):
            self._wreg(reg, self._rreg(reg) & (~mask))
     
        def _tocard(self, cmd, send):
     
            recv = []
            bits = irq_en = wait_irq = n = 0
            stat = self.ERR
     
            if cmd == 0x0E:
                irq_en = 0x12
                wait_irq = 0x10
            elif cmd == 0x0C:
                irq_en = 0x77
                wait_irq = 0x30
     
            self._wreg(0x02, irq_en | 0x80)
            self._cflags(0x04, 0x80)
            self._sflags(0x0A, 0x80)
            self._wreg(0x01, 0x00)
     
            for c in send:
                self._wreg(0x09, c)
            self._wreg(0x01, cmd)
     
            if cmd == 0x0C:
                self._sflags(0x0D, 0x80)
     
            i = 2000
            while True:
                n = self._rreg(0x04)
                i -= 1
                if ~((i != 0) and ~(n & 0x01) and ~(n & wait_irq)):
                    break
     
            self._cflags(0x0D, 0x80)
     
            if i:
                if (self._rreg(0x06) & 0x1B) == 0x00:
                    stat = self.OK
     
                    if n & irq_en & 0x01:
                        stat = self.NOTAGERR
                    elif cmd == 0x0C:
                        n = self._rreg(0x0A)
                        lbits = self._rreg(0x0C) & 0x07
                        if lbits != 0:
                            bits = (n - 1) * 8 + lbits
                        else:
                            bits = n * 8
     
                        if n == 0:
                            n = 1
                        elif n > 16:
                            n = 16
     
                        for _ in range(n):
                            recv.append(self._rreg(0x09))
                else:
                    stat = self.ERR
     
            return stat, recv, bits
     
        def _crc(self, data):
     
            self._cflags(0x05, 0x04)
            self._sflags(0x0A, 0x80)
     
            for c in data:
                self._wreg(0x09, c)
     
            self._wreg(0x01, 0x03)
     
            i = 0xFF
            while True:
                n = self._rreg(0x05)
                i -= 1
                if not ((i != 0) and not (n & 0x04)):
                    break
     
            return [self._rreg(0x22), self._rreg(0x21)]
     
        def init(self):
     
            self.reset()
            self._wreg(0x2A, 0x8D)
            self._wreg(0x2B, 0x3E)
            self._wreg(0x2D, 30)
            self._wreg(0x2C, 0)
            self._wreg(0x15, 0x40)
            self._wreg(0x11, 0x3D)
            self.antenna_on()
     
        def reset(self):
            self._wreg(0x01, 0x0F)
     
        def antenna_on(self, on=True):
     
            if on and ~(self._rreg(0x14) & 0x03):
                self._sflags(0x14, 0x03)
            else:
                self._cflags(0x14, 0x03)
     
        def request(self, mode):
     
            self._wreg(0x0D, 0x07)
            (stat, recv, bits) = self._tocard(0x0C, [mode])
     
            if (stat != self.OK) | (bits != 0x10):
                stat = self.ERR
     
            return stat, bits
     
        def anticoll(self,anticolN):
     
            ser_chk = 0
            ser = [anticolN, 0x20]
     
            self._wreg(0x0D, 0x00)
            (stat, recv, bits) = self._tocard(0x0C, ser)
     
            if stat == self.OK:
                if len(recv) == 5:
                    for i in range(4):
                        ser_chk = ser_chk ^ recv[i]
                    if ser_chk != recv[4]:
                        stat = self.ERR
                else:
                    stat = self.ERR
     
            return stat, recv
     
     
        def PcdSelect(self, serNum,anticolN):
            backData = []
            buf = []
            buf.append(anticolN)
            buf.append(0x70)
            #i = 0
            ###xorsum=0;
            for i in serNum:
                buf.append(i)
            #while i<5:
            #    buf.append(serNum[i])
            #    i = i + 1
            pOut = self._crc(buf)
            buf.append(pOut[0])
            buf.append(pOut[1])
            (status, backData, backLen) = self._tocard( 0x0C, buf)
            if (status == self.OK) and (backLen == 0x18):
                return  1
            else:
                return 0
     
     
        def SelectTag(self, uid):
            byte5 = 0
     
            #(status,puid)= self.anticoll(self.PICC_ANTICOLL1)
            #print("uid",uid,"puid",puid)
            for i in uid:
                byte5 = byte5 ^ i
            puid = uid + [byte5]
     
            if self.PcdSelect(puid,self.PICC_ANTICOLL1) == 0:
                return (self.ERR,[])
            return (self.OK , uid)
     
        def tohexstring(self,v):
            s="["
            for i in v:
                if i != v[0]:
                    s = s+ ", "
                s=s+ "0x{:02X}".format(i)
            s= s+ "]"
            return s
     
     
     
     
        def SelectTagSN(self):
            valid_uid=[]
            (status,uid)= self.anticoll(self.PICC_ANTICOLL1)
            #print("Select Tag 1:",self.tohexstring(uid))
            if status != self.OK:
                return  (self.ERR,[])
     
            if self.DEBUG:   print("anticol(1) {}".format(uid))
            if self.PcdSelect(uid,self.PICC_ANTICOLL1) == 0:
                return (self.ERR,[])
            if self.DEBUG:   print("pcdSelect(1) {}".format(uid))
     
            #check if first byte is 0x88
            if uid[0] == 0x88 :
                #ok we have another type of card
                valid_uid.extend(uid[1:4])
                (status,uid)=self.anticoll(self.PICC_ANTICOLL2)
                #print("Select Tag 2:",self.tohexstring(uid))
                if status != self.OK:
                    return (self.ERR,[])
                if self.DEBUG: print("Anticol(2) {}".format(uid))
                rtn =  self.PcdSelect(uid,self.PICC_ANTICOLL2)
                if self.DEBUG: print("pcdSelect(2) return={} uid={}".format(rtn,uid))
                if rtn == 0:
                    return (self.ERR,[])
                if self.DEBUG: print("PcdSelect2() {}".format(uid))
                #now check again if uid[0] is 0x88
                if uid[0] == 0x88 :
                    valid_uid.extend(uid[1:4])
                    (status , uid) = self.anticoll(self.PICC_ANTICOLL3)
                    #print("Select Tag 3:",self.tohexstring(uid))
                    if status != self.OK:
                        return (self.ERR,[])
                    if self.DEBUG: print("Anticol(3) {}".format(uid))
                    if self.MFRC522_PcdSelect(uid,self.PICC_ANTICOLL3) == 0:
                        return (self.ERR,[])
                    if self.DEBUG: print("PcdSelect(3) {}".format(uid))
            valid_uid.extend(uid[0:5])
            # if we are here than the uid is ok
            # let's remove the last BYTE whic is the XOR sum
     
            return (self.OK , valid_uid[:len(valid_uid)-1])
            #return (self.OK , valid_uid)
     
     
     
     
     
     
        def auth(self, mode, addr, sect, ser):
            return self._tocard(0x0E, [mode, addr] + sect + ser[:4])[0]
     
        def authKeys(self,uid,addr,keyA=None, keyB=None):
            status = self.ERR
            if keyA is not None:
                status = self.auth(self.AUTHENT1A, addr, keyA, uid)
            elif keyB is not None:
                status = self.auth(self.AUTHENT1B, addr, keyB, uid)
            return status
     
     
        def stop_crypto1(self):
            self._cflags(0x08, 0x08)
     
        def read(self, addr):
     
            data = [0x30, addr]
            data += self._crc(data)
            (stat, recv, _) = self._tocard(0x0C, data)
            return stat, recv
     
        def write(self, addr, data):
     
            buf = [0xA0, addr]
            buf += self._crc(buf)
            (stat, recv, bits) = self._tocard(0x0C, buf)
     
            if not (stat == self.OK) or not (bits == 4) or not ((recv[0] & 0x0F) == 0x0A):
                stat = self.ERR
            else:
                buf = []
                for i in range(16):
                    buf.append(data[i])
                buf += self._crc(buf)
                (stat, recv, bits) = self._tocard(0x0C, buf)
                if not (stat == self.OK) or not (bits == 4) or not ((recv[0] & 0x0F) == 0x0A):
                    stat = self.ERR
            return stat
     
     
        def writeSectorBlock(self,uid, sector, block, data, keyA=None, keyB = None):
            absoluteBlock =  sector * 4 + (block % 4)
            if absoluteBlock > 63 :
                return self.ERR
            if len(data) != 16:
                return self.ERR
            if self.authKeys(uid,absoluteBlock,keyA,keyB) != self.ERR :
                return self.write(absoluteBlock, data)
            return self.ERR
     
        def readSectorBlock(self,uid ,sector, block, keyA=None, keyB = None):
            absoluteBlock =  sector * 4 + (block % 4)
            if absoluteBlock > 63 :
                return self.ERR, None
            if self.authKeys(uid,absoluteBlock,keyA,keyB) != self.ERR :
                return self.read(absoluteBlock)
            return self.ERR, None
     
        def MFRC522_DumpClassic1K(self,uid, Start=0, End=64, keyA=None, keyB=None):
            for absoluteBlock in range(Start,End):
                status = self.authKeys(uid,absoluteBlock,keyA,keyB)
                # Check if authenticated
                print("{:02d} S{:02d} B{:1d}: ".format(absoluteBlock, absoluteBlock//4 , absoluteBlock % 4),end="")
                if status == self.OK:                    
                    status, block = self.read(absoluteBlock)
                    if status == self.ERR:
                        break
                    else:
                        for value in block:
                            print("{:02X} ".format(value),end="")
                        print("  ",end="")
                        for value in block:
                            if (value > 0x20) and (value < 0x7f):
                                print(chr(value),end="")
                            else:
                                print('.',end="")
                        print("")
                else:
                    break
            if status == self.ERR:
                print("Authentication error")
                return self.ERR
            return self.OK
    je souhaite obtenir la table de mémoire d'un carte rfid.
    donc en lisant la classe je suppose qu'il faut utiliser cette méthode ?

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
     
        def writeSectorBlock(self,uid, sector, block, data, keyA=None, keyB = None):
            absoluteBlock =  sector * 4 + (block % 4)
            if absoluteBlock > 63 :
                return self.ERR
            if len(data) != 16:
                return self.ERR
            if self.authKeys(uid,absoluteBlock,keyA,keyB) != self.ERR :
                return self.write(absoluteBlock, data)
            return self.ERR
    Comme je suis complètement débutant en syntaxe python par ou commencer ??
    mais déjà pour le début on défini le constructeur en lisant un exemple
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
        def __init__(self, sck, mosi, miso, rst, cs,baudrate=1000000,spi_id=0):
    le self c'est un argument qu'on ne met pas ? c'est l'objet en lui même ?

    ensuite une fois que les attribut sont chargé j'utilise cette méthode:

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
        def writeSectorBlock(self,uid, sector, block, data, keyA=None, keyB = None):
    je constate qu'il y a 6 arguments qui vont être charger dans ces attribut de cette classe mrfc

    le "None" cela veut dire que l'argument n'est pas obligatoire ?

  2. #2
    Membre Expert
    Avatar de MPython Alaplancha
    Homme Profil pro
    Paysan à 3 francs six sous
    Inscrit en
    Juin 2018
    Messages
    919
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Pyrénées Orientales (Languedoc Roussillon)

    Informations professionnelles :
    Activité : Paysan à 3 francs six sous
    Secteur : Agroalimentaire - Agriculture

    Informations forums :
    Inscription : Juin 2018
    Messages : 919
    Billets dans le blog
    8
    Par défaut
    Bonjour,
    je souhaite obtenir la table de mémoire d'un carte rfid.
    donc en lisant la classe je suppose qu'il faut utiliser cette méthode ?
    Sur pypi ou sur le github du projet figure un code exemple d'utilisation du module: https://pypi.org/project/mfrc522/ ainsi qu'un lien vers un tutoriel "How to setup a Raspberry Pi RFID RC522 Chip"...

    En ce qui concerne les autres questions, la littérature sur le sujet est abondante.
    Je t'invite à regarder la doc ou un tutoriel sur les classes. Ils sont écrits pour ça... et si ma foi il y a quelque chose que tu ne comprends pas sur python reviens vers nous .

  3. #3
    Expert éminent
    Homme Profil pro
    Architecte technique retraité
    Inscrit en
    Juin 2008
    Messages
    21 717
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Manche (Basse Normandie)

    Informations professionnelles :
    Activité : Architecte technique retraité
    Secteur : Industrie

    Informations forums :
    Inscription : Juin 2008
    Messages : 21 717
    Par défaut
    Salut,

    Citation Envoyé par keokaz Voir le message
    Comme je suis complètement débutant en syntaxe python par ou commencer ??
    Commencez par ouvrir un tuto!

    Puis arrêtez de croire que parce que vous codez en Python on devrait avoir des connaissances sur micropython ou le chip RFID RC522: ils ne sont pas "standards".
    Ils viennent avec leur documentation du constructeur (à lire pour câbler proprement le chip).
    Si on n'a pas eu la possibilité de jouer avec dans une configuration identique, on ne pourra pas tester pour vous (et il faudra connaître un peu Python pour "tester").
    => demander de l'aide dans un forum matériel serait plus approprié.

    - W
    Architectures post-modernes.
    Python sur DVP c'est aussi des FAQs, des cours et tutoriels

  4. #4
    Membre éprouvé

    Profil pro
    Inscrit en
    Août 2008
    Messages
    1 222
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Août 2008
    Messages : 1 222
    Par défaut
    ok merci de la réponse, je pensais que la syntaxe était la même ...

    j'ai essayer d' ailleur essayer utiliser l'exemple mais j'ai une erreur à la ligne qui n'existe pas du moins qu'il n'y a rien dessus:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
     
    from mfrc522 import MFRC522
    import utime
     
    reader = MFRC522(spi_id=0,sck=2,miso=4,mosi=3,cs=1,rst=0)
     
    print("")
    print("Place card into reader")
    print("")
    PreviousCard = [0]
     
    try:
        while True:
            reader.init()
            (stat, tag_type) = reader.request(reader.REQIDL) 
            print("Hold a tag near the reader")
            id, text = reader.read()
            print("ID: %s\nText: %s" % (id,text))
            sleep(5) // ligne 18
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
     
    MicroPython v1.18 on 2022-01-17; Raspberry Pi Pico with RP2040
     
    Type "help()" for more information.
    >>> %Run -c $EDITOR_CONTENT
    Traceback (most recent call last):
      File "<stdin>", line 19
    SyntaxError: invalid syntax

  5. #5
    Membre Expert
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Février 2003
    Messages
    1 603
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Développeur informatique
    Secteur : Industrie

    Informations forums :
    Inscription : Février 2003
    Messages : 1 603
    Par défaut
    Il manque l'import de time pour utiliser la méthode sleep() :

    Mais ça n'explique par l'erreur.

    Question : // ligne 18 est présent à la dernière ligne du code ?

    Si oui, l'emploi du // n'est pas recommandé pour écrire un commentaire en Python

  6. #6
    Membre Expert
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Février 2003
    Messages
    1 603
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Développeur informatique
    Secteur : Industrie

    Informations forums :
    Inscription : Février 2003
    Messages : 1 603
    Par défaut
    Citation Envoyé par keokaz Voir le message
    le "None" cela veut dire que l'argument n'est pas obligatoire ?

    None signifie que la variable n'est d'aucun type, ne contient aucune valeur.

    Revient à peu près au undef en Perl.

    Ca ne veut pas dire que c'est optionnel. Elle peut très bien recevoir une valeur ultérieurement dans le déroulé du traitement. Sûrement même, sinon son intérêt est pour le moins étrange.

  7. #7
    Membre Expert
    Avatar de MPython Alaplancha
    Homme Profil pro
    Paysan à 3 francs six sous
    Inscrit en
    Juin 2018
    Messages
    919
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Pyrénées Orientales (Languedoc Roussillon)

    Informations professionnelles :
    Activité : Paysan à 3 francs six sous
    Secteur : Agroalimentaire - Agriculture

    Informations forums :
    Inscription : Juin 2018
    Messages : 919
    Billets dans le blog
    8
    Par défaut
    Je vois un try mais pas except...
    Tu as loupé ton copié collé.

Discussions similaires

  1. Afficher ma table dans mon interface
    Par 9tita dans le forum Composants
    Réponses: 9
    Dernier message: 02/06/2007, 11h00
  2. [C#] creer et afficher une table en code behind
    Par shams dans le forum ASP.NET
    Réponses: 9
    Dernier message: 13/07/2005, 16h51
  3. afficher les tables d'une BDD
    Par Samanta dans le forum Décisions SGBD
    Réponses: 2
    Dernier message: 04/07/2005, 18h09
  4. Réponses: 2
    Dernier message: 02/06/2005, 10h21
  5. [JTable] afficher la table vide au début
    Par orgoz dans le forum Composants
    Réponses: 5
    Dernier message: 06/01/2005, 15h21

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo