用vb写的程序串口通信给Arduino发信息为什么会延时-Arduino中文社区 - Powered by Discuz!

Arduino中文社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 538|回复: 0

[未解决] 用vb写的程序串口通信给Arduino发信息为什么会延时

[复制链接]
发表于 2022-3-31 12:14 | 显示全部楼层 |阅读模式
本帖最后由 arduino1234567 于 2022-3-31 12:16 编辑

用vb写的程序串口通信给Arduino发信息为什么会延时亮灯
想要的功能vb程序按下按钮 Arduino 亮灯
vb写的程序源码
Private Sub Command5_Click()
MSComm1.Output = "a"
End Sub

Arduino源码

int ledPin = 4; //定义数字接口

void setup() {
  // put your setup code here, to run once:
pinMode(ledPin, OUTPUT);//定义小灯接口为输出接口

// 串口通讯初始化
  Serial.begin(9600);  // 串口通讯初始化(9600 bps):
}

void loop() {
  // put your main code here, to run repeatedly:
if ( Serial.available()>0 ){
  char vbzf = Serial.read();
  if (vbzf == 'a'){
    digitalWrite(ledPin, HIGH); //点亮小灯
   
    }
  if (vbzf == 'b'){
    digitalWrite(ledPin, LOW); //熄灭小灯
   
    }
  
  }
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|Archiver|手机版|Arduino中文社区

GMT+8, 2024-11-28 11:53 , Processed in 0.090335 second(s), 16 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表