Thanks Sergey, I feel I'm making progress. Am I correct to think that the
port at the bottom of the iPAQ is COM3?
Using port names "COM1" and "COM2" in the following code fail with error
55 (other names fail with error 2)
Dim bps As New OpenNETCF.IO.Serial.BasicPortSettings
bps.BaudRate = 4800
bps.Parity = OpenNETCF.IO.Serial.Parity.even
bps.ByteSize = 7 'DataBits
bps.StopBits = OpenNETCF.IO.Serial.StopBits.two
Dim prtCOM As New OpenNETCF.IO.Serial.Port("COM3", bps)
prtCOM.Open
Thanks, Graeme.
I suppose it can be read using OpenNETCF.IO.Serial.Port [1]. To enumerate
available COM ports see HKEY_LOCAL_MACHINE\Drivers\Active\* for Name with
"COMn:" signature.
[1]
http://www.opennetcf.org/SourceBrow...ub/wwwroot/Source/OpenNETCF/IO/Serial/Port.cs
Best regards,
Sergey Bogdanov
http://www.sergeybogdanov.com
GraemeR wrote:
Hi, I have an iPAQ and some sylvac calipers. I've attached the calipers
to port on the bottom of the iPAQ.
How do I capture a signal sent from the calipers to the port? (How do I
capture the port?)
Thanks, Graeme