Arduino Mega_ADK 脉冲检测
/***************************************************************** ** 程序名:Mega_ADK Pulse ** 参 数:无 ** 功 能:读取一个引脚的脉冲并通过串口发送出来 ** 注 意:目标板为Maga ADK,MCU为ATmega 2560 ** 作 者:赵露露 ** 版 本:v1.0 ** 修改时间:2012.8.17 ******************************************************************/ #define PulsePin 7 unsigned long Pulse_Value; void setup() { pinMode(PulsePin, INPUT); Serial.begin(115200); //设置波特率 } void loop() { Pulse_Value = pulseIn(PulsePin,HIGH); //读取脉冲检测引脚检测到的脉冲 Serial.print("The Pulse Value is:"); Serial.println(Pulse_Value); delay(100); }
注:延时对脉冲检测无影响。
新手上路,如有错误,欢迎指正。
相关推荐
yuancr 2020-05-20
erqw 2020-05-19
浅梦墨汐 2020-05-12
yuancr 2020-05-10
erqw 2020-03-23
yuancr 2020-03-04
internetofthings 2020-01-29
FIllMood 2020-01-28
FIllMood 2020-01-11
FIllMood 2020-01-11
YingCloud 2020-01-11
internetofthings 2020-01-08
第三步:通过 arduino 软件选择对应的网络端口就可以进行固件更新了,不过更新的时候要注意不能将 Arduino.begin() 和 ArduinoOTA.handle() 这两个关键函数给更新掉
erqw 2020-01-06
internetofthings 2020-01-04
internetofthings 2019-12-30
internetofthings 2019-12-28
yuancr 2019-12-28
YingCloud 2019-12-27
internetofthings 2019-12-26