VB串口发送一串16进制跟接收问题

PrivateSubCommand6_Click()IfMSComm1.PortOpen=FalseThenLabel6.Caption="Openaportfirst"... Private Sub Command6_Click()
If MSComm1.PortOpen = False Then
Label6.Caption = "Open a port first"
Label6.ForeColor = vbRed
Exit Sub
End If
Dim number As Integer
Dim outbyte(0) As Byte
number = CByte(Val("&H " & "bb"))
outbyte(0) = number
MSComm1.OutBufferCount = 0
MSComm1.Output = outbyte

End Sub
我text3内容是整数的0~8
text4是0~5(步进0.1的数,例如1.9 2 2.1 ....)
我想按command6就发送16进制的BB text3内容 text4内容,
例如text3为3 text4为3.5 就发送16进制 bb0335
text3为0 text4为0 就发送16进制 bb0000
text3为0 text4为3 就发送16进制 bb0030
command6的代码应该怎么改?
展开
 我来答
威威202
2011-10-29 · TA获得超过1306个赞
知道大有可为答主
回答量:1644
采纳率:68%
帮助的人:1011万
展开全部
首先在ford_load事件里要把MSComm1的发送接收方式改成字节接收方式,即MSComm1.InputMode = comInputModeBinary
Command6里的发送事件改为:
dim outbyte(2) as byte
outbyte(0)=&HBB
outbyte(1)="&H0" & trim(text3.text)
outbyte(2)="&H" & format(10*val(text4.text),"00")
MSComm1.OutBufferCount = 0
mscomm1.output=outbyte
追问
http://zhidao.baidu.com/question/335655105.html?quesup1#replyask-29303859
我这里还有一个问题,能帮我看看吗
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式