9 Star 166 Fork 18

GVPRTduino/RTduino

Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
echo.cpp 512 Bytes
Copy Edit Raw Blame History
满鉴霆 authored 2023-03-21 22:35 +08:00 . add comment for github/gitee homepage link
/*
* Copyright (c) 2021-2022, RTduino Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* https://github.com/RTduino/RTduino
* https://gitee.com/rtduino/RTduino
*
* Change Logs:
* Date Author Notes
* 2022-09-27 Meco Man first version
*/
#include <Arduino.h>
void setup(void)
{
Serial.begin();
delay(10000);
}
void loop(void)
{
int ch;
while(!Serial.available());
ch = Serial.read();
if (ch > 0)
{
Serial.print((char)ch);
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/rtduino/RTduino.git
git@gitee.com:rtduino/RTduino.git
rtduino
RTduino
RTduino
master

Search