۲۷-تير-۱۳۹۵, ۱۸:۲۰:۵۳
۰۲-مهر-۱۳۹۵, ۰۴:۳۲:۵۸
سلام میتونی با استفادە از Microsoft Comm Control خیلی راحت با lcd/led ارتباط برقرار کنی .سورس کدشو دارم ولی نمیدونم چطوری اینجا بفرستم!!!
کدشو برات میزارم ولی نمیدونم چرا قاطی میشە!
کدشو برات میزارم ولی نمیدونم چرا قاطی میشە!
کد php:
Dim uid As Byte ' Set this variable to SC4Dlite UID
Private Sub Command1_Click()
Dim s As String
' Fill up with spaces so that it is always 4 bytes
If Len(txtASCII) < 4 Then
txtASCII = txtASCII & Space(4 - Len(txtASCII))
End If
MSComm1.Output = Chr(uid) & "b" & txtASCII ' Send the Display ASCII command
txtASCII = "" ' Clear the text
End Sub
Private Sub Form_Load()
' Configure Comm Port to 9600,8N1 and Port Number
MSComm1.Settings = "9600,n,8,1"
MSComm1.CommPort = 1 ' You may need to change this to match you PC
MSComm1.PortOpen = True ' Open Comm Port connection
' Set the uid to match the SC4Dlite uid ( 255 default )
uid = 255
End Sub