Dear Team,
I am having Novus RFID reader i wnat RFID tag data in C# window application how can possible please help me
Dear Team,
I am having Novus RFID reader i wnat RFID tag data in C# window application how can possible please help me
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Neeraj ChoudharyPosted Jul 2, 2023, 6:13 AM
Plz share full script if possible
Neeraj ChoudharyPosted Jul 2, 2023, 6:12 AM
Plz share full program
Sam HobbsPosted Jun 25, 2023, 7:13 PM
Are there any sample programs in the documentation or provided with the device?
cjardPosted Jun 25, 2023, 6:09 AM
Never used a Novus but it probably works a similar way to other ones I have used, where it sends the RFID it read to any client connected to a certain TCP port. Read the documentation to find out what port and then from a command line do "telnet (ip.of.reader.here) (port)" eg "telnet 192.168.1.2 12345" and then scan a tag.. You'll see what data is emitted every time you scan. Note, telnet isn't installed on windows by default and needs to be added with "turn windows features on or off"
Build an app that does the same; connect a TcpClient to the ip and port, and await a ReadLineAsync on a stream reader wrapped around the tcp socket's stream. When you get data the ReadLine will unblock and the code after it will execute, so you can process the tag and go back to waiting for the next read