0

I want to read the scorecard using chats worth ACP 100 readers. I tried to implement an application with C# to access the reader through the serial port. But still couldn't find the proper method to do this. Could you please guide me to implement this?

tutorial or source sample will be highly appreciated.

Thank you,

Prasad
  • 125
  • 2
  • 3
  • 13

1 Answers1

0

Read the port like in: What is the correct way to read a serial port using .NET framework?

throw in the XonXoff handshake since the reader looks like it uses that.

port.Handshake = Handshake.XOnXOff;

see what kind of data it spits out, then see if you can decode it.

Pomadomaphin
  • 116
  • 6