› Forums › General Questions and Comments › Windows/BT › Reply To: Windows/BT
2019-01-21 at 04:08
#2457
mark
Guest
I see the problem. It’s in the form1.vb file.
If (count <= 12) Then
receivedData = ReceiveSerialData()
debug(“received data = ” & receivedData)
If (receivedData = “H”) Then
connected = True
debug(“HELLO reply received”)
Else
Timer_checkConnect.Enabled = True
timerConnectFlag.Text = “ON”
End If
The initial handshake is waiting for an H
The response from the arduino sketch, though, is
<V,14.0.0.3,Nov 1 2018><HELLO>
Any chance of getting a Windows build that will accept the appropriate handshake?
Thanks!