Hi,
I'm trying to get a NFC RFID Reader working, but I can't seem to get any information on it. The device itself is just a little black box with a white circle in the middle with the letters NFC and left bottom 'IC RFID Reader', when connected the red LED is lit. When connected to Windows 10 (updated to the latest version) it is shown in Device manager under Ports (COM & LPTS) as USB-SERIAL CH340 (COM7) with Bus reported device description STM32Simulate CH341
I've checked the forum already, but couldn't find anything working (or I'm just not finding it).
Keeping it very simpe, just to check if there is actual communication incoming, at all.. (also tried the defaul 9600, and RThreshold 8)
But nothing happens when I put a RFID tag (which came in the package with the Reader) on it, so no events trigger.
I've checked the tag with my phone with NFC Tools and the tag type is ISO 14443-3A NXP MIFARE Classic 1k
Anyone any idea if I have to do something special before I can read anything, maybe first need to send something before it can read?
I'm trying to get a NFC RFID Reader working, but I can't seem to get any information on it. The device itself is just a little black box with a white circle in the middle with the letters NFC and left bottom 'IC RFID Reader', when connected the red LED is lit. When connected to Windows 10 (updated to the latest version) it is shown in Device manager under Ports (COM & LPTS) as USB-SERIAL CH340 (COM7) with Bus reported device description STM32Simulate CH341
I've checked the forum already, but couldn't find anything working (or I'm just not finding it).
Code:
Private Sub Form_Load()
MsComm1.CommPort = 7
'mscomm1.Settings = (Your Settings)
'MsComm1.Settings = "9600,N,8,1"
MsComm1.Settings = "19200,N,8,1"
MsComm1.RThreshold = 1 '8
MsComm1.InputMode = comInputModeBinary
MsComm1.PortOpen = True
End Sub
Private Sub MsComm1_OnComm()
Debug.Print "CommEvent: " & MsComm1.CommEvent
End SubBut nothing happens when I put a RFID tag (which came in the package with the Reader) on it, so no events trigger.
I've checked the tag with my phone with NFC Tools and the tag type is ISO 14443-3A NXP MIFARE Classic 1k
Anyone any idea if I have to do something special before I can read anything, maybe first need to send something before it can read?