9 Star 166 Fork 18

GVPRTduino/RTduino

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
echo.cpp 489 Bytes
一键复制 编辑 原始数据 按行查看 历史
满鉴霆 提交于 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-08-07 Meco Man first version
*/
#include <Arduino.h>
void setup(void)
{
SerialUSB.begin();
}
void loop(void)
{
int ch;
ch = SerialUSB.read(); // block function
if (ch > 0)
{
SerialUSB.print((char)ch);
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/rtduino/RTduino.git
git@gitee.com:rtduino/RTduino.git
rtduino
RTduino
RTduino
master

搜索帮助