My pico is connected with a RFID PN532 module via I2C channel at I2C_ADDRESS = 0x24.
I have updated the line _I2C_ADDRESS = 0x24 in PiicoDev_RFID.py
I think line 51 at PiicoDev_Unified.py needs also to be changed with actual sda and scl pins, that are
scl=Pin(17), sda=Pin(16)
I then tried to run read.py and I get :
Traceback (most recent call last):
File "<stdin>", line 6, in <module>
File "PiicoDev_RFID.py", line 79, in __init__
File "PiicoDev_RFID.py", line 284, in reset
File "PiicoDev_RFID.py", line 95, in _wreg
OSError: [Errno 5] EIO
Are there any other values I have to change in the libraries? Any suggestions as to how to troubleshoot the issue?