国产无套水多在线观看-国产无套无码aⅴ在线观看-国产无套在线观看视频-国产午夜91福利一区二区-国产午夜av秒播-国产午夜av秒播在线观看

tangfeng
學(xué)海無涯
級(jí)別: 探索解密
精華主題: 0
發(fā)帖數(shù)量: 44 個(gè)
工控威望: 143 點(diǎn)
下載積分: 922 分
在線時(shí)間: 95(小時(shí))
注冊(cè)時(shí)間: 2010-01-24
最后登錄: 2024-12-22
查看tangfeng的 主題 / 回貼
樓主  發(fā)表于: 2017-09-02 16:50
'在窗體的Load事件中加入下列代碼對(duì)串口進(jìn)行初始化:
Private Sub Form_Load()
  MSComm1.CommPort = 1                  ' 設(shè)置通信端口號(hào)為COM1
  MSComm1.InputMode = 1                 ' 接收二進(jìn)制型數(shù)據(jù)
  MSComm1.RThreshold = 1                ' 設(shè)置并返回要接收的字符數(shù)
  MSComm1.SThreshold = 1                ' 設(shè)置并返回發(fā)送緩沖區(qū)中允許的最小字符數(shù)
  MSComm1.Settings = "9600,E,7,1"       ' 設(shè)置串口1通信參數(shù)
  MSComm1.PortOpen = True               ' 打開通信端口1
  Timer1.Enabled = False
End Sub
'向PLC發(fā)送指令:02 30 31 30 30 30 32 30 03 35 36,功能是從D0開始讀取32個(gè)字節(jié)數(shù)據(jù)
Private Sub Cmdsend_Click()
  MSComm1.Output = Chr(&H2) & Chr(&H30) & Chr(&H31) & Chr(&H30) & Chr(&H30) & Chr(&H30) & Chr(&H32) & Chr(&H30) & Chr(&H3) & Chr(&H35) & Chr(&H38)
  Timer1.Enabled = True
End Sub
'獲得各輸入端口狀態(tài)
Private Sub Timer1_Timer()
  Dim Inbyte() As Byte
  Dim buffer As String
  ReDim Inbyte(100)
  Inbyte = MSComm1.Input                         '返回的數(shù)據(jù)串
  For i = LBound(Inbyte) To UBound(Inbyte)
     buffer = buffer + Hex(Inbyte(i)) + Chr(32)
  Next i
  'Text1.Text = buffer                            '顯示返回的數(shù)據(jù)串,需自己添加TextBox
  If Hex(Inbyte(2)) = "31" Then                  '31表示觸點(diǎn)閉合
    Shape1(0).FillColor = QBColor(12)
  Else                                           '30表示觸點(diǎn)斷開
    Shape1(0).FillColor = QBColor(10)
  End If
  If Hex(Inbyte(6)) = "31" Then
    Shape1(1).FillColor = QBColor(12)
  Else
    Shape1(1).FillColor = QBColor(10)
  End If
  If Hex(Inbyte(10)) = "31" Then
    Shape1(2).FillColor = QBColor(12)
  Else
    Shape1(2).FillColor = QBColor(10)
  End If
  If Hex(Inbyte(14)) = "31" Then
    Shape1(3).FillColor = QBColor(12)
  Else
    Shape1(3).FillColor = QBColor(10)
  End If
  If Hex(Inbyte(18)) = "31" Then
    Shape1(4).FillColor = QBColor(12)
  Else
    Shape1(4).FillColor = QBColor(10)
  End If
  If Hex(Inbyte(22)) = "31" Then
    Shape1(5).FillColor = QBColor(12)
  Else
    Shape1(5).FillColor = QBColor(10)
  End If
  If Hex(Inbyte(26)) = "31" Then
    Shape1(6).FillColor = QBColor(12)
  Else
    Shape1(6).FillColor = QBColor(10)
  End If
  If Hex(Inbyte(30)) = "31" Then
    Shape1(7).FillColor = QBColor(12)
  Else
    Shape1(7).FillColor = QBColor(10)
  End If
  If Hex(Inbyte(34)) = "31" Then
    Shape1(8).FillColor = QBColor(12)
  Else
    Shape1(8).FillColor = QBColor(10)
  End If
  If Hex(Inbyte(38)) = "31" Then
    Shape1(9).FillColor = QBColor(12)
  Else
    Shape1(9).FillColor = QBColor(10)
  End If
  If Hex(Inbyte(42)) = "31" Then
    Shape1(10).FillColor = QBColor(12)
  Else
    Shape1(10).FillColor = QBColor(10)
  End If
  If Hex(Inbyte(46)) = "31" Then
    Shape1(11).FillColor = QBColor(12)
  Else
    Shape1(11).FillColor = QBColor(10)
  End If
  If Hex(Inbyte(50)) = "31" Then
    Shape1(12).FillColor = QBColor(12)
  Else
    Shape1(12).FillColor = QBColor(10)
  End If
  If Hex(Inbyte(54)) = "31" Then
    Shape1(13).FillColor = QBColor(12)
  Else
    Shape1(13).FillColor = QBColor(10)
  End If
  If Hex(Inbyte(58)) = "31" Then
    Shape1(14).FillColor = QBColor(12)
  Else
    Shape1(14).FillColor = QBColor(10)
  End If
  If Hex(Inbyte(62)) = "31" Then
    Shape1(15).FillColor = QBColor(12)
  Else
    Shape1(15).FillColor = QBColor(10)
  End If
  Timer1.Enabled = False
End Sub
'當(dāng)退出程序時(shí),關(guān)閉串行口
Private Sub Cmdquit_Click()
  MSComm1.PortOpen = False           '關(guān)閉串口
  Unload Me
End Sub
// 讀不到PLC 輸入點(diǎn),下標(biāo)越界,望高手指點(diǎn)修改
duquanplc
DDD
級(jí)別: 略有小成
精華主題: 0
發(fā)帖數(shù)量: 260 個(gè)
工控威望: 404 點(diǎn)
下載積分: 703 分
在線時(shí)間: 219(小時(shí))
注冊(cè)時(shí)間: 2008-08-25
最后登錄: 2025-02-06
查看duquanplc的 主題 / 回貼
1樓  發(fā)表于: 2017-09-08 21:57
為什么不用專用協(xié)議做呢?格式一或格式四都可。

主站蜘蛛池模板: 国内精品人妻无码久久久影院蜜桃 | 无码日本亚洲一区久久精品 | 手机看片国产欧美日韩高清 | 国产熟睡乱子伦视频在线播放 | 欧美性猛交久久久久 | 国产精品1024香蕉在线观看 | 人妻无码一区二区视频观看 | 大山里真实刮伦小说 | 女自慰喷水免费观看www | 国产亚洲欧美日本一二三本道 | 久草免费福利在线 | 日韩伦理一区二区三区 | 无码xxxx小说三级亚洲av无码乱码国产 | 日韩视频在线播放 | 成人性生交大片免费看vr | 亚洲欧美精品一区二区三区四区 | 久久成人小视频 | 亚洲国产一区二区在线观看 | 中文字幕少妇偷乱视频在线 | 国产91九色在线播放 | 国产精品卡1卡2卡3 国产精品卡1卡2卡3网站 | 人妻少妇偷人无码精品AV | 日本人强伦姧人妻A片 | 国精产品999永久中国有限 | 福利卡—卡二卡三卡四卡 | 好男人社区神马在线观看WWW | 高辣H文短篇啪啪小说男男 高辣H文黄暴糙汉文H | 欧美变态杂交xxx | 国产成人av综合久久 | 亚洲一区二区三区四区五区六区 | 日本人六九视频 | 日本久久久WWW成人免费毛片丨 | 丰满熟妇人妻中文字幕 | 免费看男人J放进女人J无遮掩 | 四虎精品免费 | 久久99国产精品尤物 | a级毛片中文字幕不卡 | 久久久无码精品亚洲日韩按摩 | 国内精品久久久久影院嫩草 | 色哟哟视频在线观看免费播放 | 国产亚洲日韩网爆欧美国产中文 |