首页 | 新闻 | 新品 | 文库 | 方案 | 视频 | 下载 | 商城 | 开发板 | 数据中心 | 座谈新版 | 培训 | 工具 | 博客 | 论坛 | 百科 | GEC | 活动 | 主题月 | 电子展
返回列表 回复 发帖

Arduino入门程序2-基本串口读取程序

Arduino入门程序2-基本串口读取程序

Int IncomingByte = 0; // For Incoming Serial Data


Void Setup() {
Serial.Begin(9600); // Opens Serial Port, Sets Data Rate To 9600 Bps
}

Void Loop() {

// Send Data Only When You Receive Data:
If (Serial.Available() > 0) {
// Read The Incoming Byte:
IncomingByte = Serial.Read();

// Say What You Got:
Serial.Print("I Received: ");
Serial.Println(IncomingByte, DEC);
}
}
返回列表