<big id="a5mua"></big>

      <tt id="a5mua"><dfn id="a5mua"></dfn></tt>
      <wbr id="a5mua"><sup id="a5mua"></sup></wbr>

        
        

      1. 亚洲综合小综合中文字幕,国产久爱免费精品视频,精品国产品香蕉在线,国产午夜精品在人线播放,精品一二三四区在线观看,国产成人无码免费看视频软件 ,色欲久久人妻内射,午夜在线观看成人av
        tangfeng
        學海無涯
        級別: 探索解密
        精華主題: 0
        發帖數量: 41 個
        工控威望: 143 點
        下載積分: 922 分
        在線時間: 100(小時)
        注冊時間: 2010-01-24
        最后登錄: 2025-10-10
        查看tangfeng的 主題 / 回貼
        樓主  發表于: 2017-09-02 16:50
        '在窗體的Load事件中加入下列代碼對串口進行初始化:
        Private Sub Form_Load()
          MSComm1.CommPort = 1                  ' 設置通信端口號為COM1
          MSComm1.InputMode = 1                 ' 接收二進制型數據
          MSComm1.RThreshold = 1                ' 設置并返回要接收的字符數
          MSComm1.SThreshold = 1                ' 設置并返回發送緩沖區中允許的最小字符數
          MSComm1.Settings = "9600,E,7,1"       ' 設置串口1通信參數
          MSComm1.PortOpen = True               ' 打開通信端口1
          Timer1.Enabled = False
        End Sub
        '向PLC發送指令:02 30 31 30 30 30 32 30 03 35 36,功能是從D0開始讀取32個字節數據
        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
        '獲得各輸入端口狀態
        Private Sub Timer1_Timer()
          Dim Inbyte() As Byte
          Dim buffer As String
          ReDim Inbyte(100)
          Inbyte = MSComm1.Input                         '返回的數據串
          For i = LBound(Inbyte) To UBound(Inbyte)
             buffer = buffer + Hex(Inbyte(i)) + Chr(32)
          Next i
          'Text1.Text = buffer                            '顯示返回的數據串,需自己添加TextBox
          If Hex(Inbyte(2)) = "31" Then                  '31表示觸點閉合
            Shape1(0).FillColor = QBColor(12)
          Else                                           '30表示觸點斷開
            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
        '當退出程序時,關閉串行口
        Private Sub Cmdquit_Click()
          MSComm1.PortOpen = False           '關閉串口
          Unload Me
        End Sub
        // 讀不到PLC 輸入點,下標越界,望高手指點修改
        duquanplc
        DDD
        級別: 略有小成
        精華主題: 0
        發帖數量: 231 個
        工控威望: 404 點
        下載積分: 703 分
        在線時間: 221(小時)
        注冊時間: 2008-08-25
        最后登錄: 2025-09-30
        查看duquanplc的 主題 / 回貼
        1樓  發表于: 2017-09-08 21:57
        為什么不用專用協議做呢?格式一或格式四都可。

        主站蜘蛛池模板: 亚洲女人的天堂在线观看| 婷婷开心色四房播播| 熟妇人妻引诱中文字幕| 动漫AV纯肉无码AV电影网| 亚洲日本VA午夜在线电影| 国产粉嫩系列一区二区三| 精品无码三级在线观看视频| 亚洲婷婷综合色高清在线| 亚洲高清乱码午夜电影网| 亚洲超碰97无码中文字幕| 人成午夜免费大片| 欧美精品视频一区二区三区| 农村妇女野外一区二区视频 | 成人做爰www网站视频| 亚洲中文字幕一区二区| 人妻系列无码专区免费| 高清国产欧美一v精品| 国99久9在线 | 免费| 欧美中日韩免费观看网站| 麻豆一区二区三区蜜桃免费| 国产精品成人av电影不卡| 国产精品爽爽久久久久久竹菊| 成人无码潮喷在线观看| 国产一区二区精品福利| 一区二区三区四区激情视频| 国产精品一区中文字幕| 日韩中文日韩中文字幕亚| 综合激情网一区二区三区| 国产精品伊人久久综合网| 精品国产丝袜自在线拍国语 | 色成年激情久久综合国产| jizzjizz欧美69巨大| 一区二区三区四区自拍偷拍| 亚洲中文字幕伊人久久无码| 久久人妻精品大屁股一区| 国产成人精品三级在线影院| 色偷偷亚洲女人天堂观看| 饥渴少妇高潮正在播放| 丝袜a∨在线一区二区三区不卡| 国产精品点击进入在线影院高清 | 四虎库影成人在线播放|