加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
3.5.2-Buzzer.ino 443 Bytes
一键复制 编辑 原始数据 按行查看 历史
奈何col 提交于 2017-07-21 15:43 . 20170720
/*
Arduino外部中断的使用
外部中断触发警报声
*/
//默认无遮挡,蜂鸣器发声
boolean RunBuzzer = true;
void setup()
{
Serial.begin(9600);
// 初始化外部中断
// 当int.0电平由高变低时,触发中断函数Hello
attachInterrupt(0, warning, CHANGE);
}
void loop()
{
if (RunBuzzer)
{
tone(8, 1000);
}
else
{
noTone(8);
}
}
// 中断函数
void warning()
{
RunBuzzer = !RunBuzzer;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化