Sending hex data serially from PC to PIC controller - TechRepublic
Question
July 25, 2007 at 08:52 AM
saideep_2886

Sending hex data serially from PC to PIC controller

by saideep_2886 . Updated 18 years, 11 months ago

answer this please,
i attempted to send hex data serially from PC to my PIC controller.
i used the following code
//
Private Sub cmdSend_Click()
Dim i As Integer
Dim c As String
i = Text1.Text
c = Hex$(i)
Label1.Caption = c
MSComm1.Output = Text1.Text
End Sub//
but the data displayed was different. send me code to use this purpose.

This discussion is locked

All Comments