8 Star 165 Fork 17

GVPRTduino/RTduino

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
interrupt.cpp 790 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-09-09 Meco Man first version
*/
#include <Arduino.h>
/* When you push the button, LED will on until you release the button. */
/* Please change the LED and button pin number based on your board. */
const byte ledPin = LED_BUILTIN;
const byte interruptPin = D16;
volatile byte state = LOW;
void blink()
{
state = !state;
}
void setup()
{
pinMode(ledPin, OUTPUT);
pinMode(interruptPin, INPUT_PULLUP);
attachInterrupt(digitalPinToInterrupt(interruptPin), blink, CHANGE);
}
void loop()
{
digitalWrite(ledPin, state);
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/rtduino/RTduino.git
git@gitee.com:rtduino/RTduino.git
rtduino
RTduino
RTduino
master

搜索帮助