1 Star 0 Fork 0

上海市虹口区青少年活动中心/Morse-Pjct(摩尔斯码)

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
morse.ino 666 Bytes
一键复制 编辑 原始数据 按行查看 历史
= 提交于 2020-07-16 21:18 . Bug fix
#include "morse.h"
Morse::Analog::MorseSender* mss = new Morse::Analog::MorseSender(3);
Morse::Analog::MorseRecver* msr = new Morse::Analog::MorseRecver(5, false, 788);
void setup(void)
{
Serial.begin(9600);
}
void loop(void)
{
static unsigned int counter = 0;
char temp = Serial.read();
if(temp == EOF || temp == '\0' || temp == '\n')
{
temp = msr->recv();
if(counter > 30 && temp == ' ')
{
Serial.print('\n');
counter = 0;
}
else
{
Serial.print(temp);
counter++;
}
}
else
{
mss->send(temp);
delay(M__);
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Arduino
1
https://gitee.com/HKQQSNHDZX/Morse-Pjct.git
git@gitee.com:HKQQSNHDZX/Morse-Pjct.git
HKQQSNHDZX
Morse-Pjct
Morse-Pjct(摩尔斯码)
master

搜索帮助