关于计数的方法-Arduino中文社区 - Powered by Discuz!

Arduino中文社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 12970|回复: 4

[已解决] 关于计数的方法

[复制链接]
发表于 2012-8-14 05:53 | 显示全部楼层 |阅读模式
5金币
大家好,作为一个初学者看完了基础教程那是受益匪浅啊~~不过这里面没有涉及一些计数器的程序和详细程序解释。比如我想测脉冲在一段时间的个数。哪位大侠能用上升沿计数,下降沿计数等来用arduino的程序来展示下么?

最佳答案

发表于 2012-8-14 05:53 | 显示全部楼层
int time=1000;//定义统计多少时间内的脉冲数
volatile int Pulse = 0;//用来保存脉冲的计数

void setup() {               
  Serial.begin(9600);//启动串口
  attachInterrupt(0,Pulse_count,LOW); //外部中断引脚0,中断响应程序Pulse_count,中断模式为低电平
  //attachInterrupt(0,Pulse_count,CHANGE);
  //attachInterrupt(0,Pulse_count,RISING);
  //attachInterrupt(0,Pulse_count,FALLING);   
}

void loop() {
  interrupts();//启动中断允许
  delay(time);
  noInterrupts();//关闭所有中断
  Serial.println(Pulse);//串口发送数据
}

void Pulse_count(){
  ++Pulse;//脉冲计数
}
 楼主| 发表于 2012-9-4 21:32 | 显示全部楼层
sry for no chinese input tool in this poor computer... it feels like live in stone age...
发表于 2012-9-4 21:59 | 显示全部楼层
nnwang 发表于 2012-9-4 21:32
sry for no chinese input tool in this poor computer... it feels like live in stone age...

Okey~
发表于 2014-4-22 13:54 | 显示全部楼层
int time=1000;//定义统计多少时间内的脉冲数
volatile int Pulse = 0,pulse1;//用来保存脉冲的计数


void setup()
{
pinMode(2, INPUT);  
Serial.begin(9600);
attachInterrupt(0,Pulse_count,FALLING);

  //attachInterrupt(0,Pulse_count,CHANGE);
  //attachInterrupt(0,Pulse_count,RISING);
  //attachInterrupt(0,Pulse_count,FALLING);   
}

void loop() {
  
  interrupts();//启动中断允许
  delay(time);
  noInterrupts();//关闭所有中断
  pulse1=Pulse;
  Pulse=0;
  Serial.println(pulse1/HEX);//串口发送数据
}

void Pulse_count(){
  ++Pulse;//脉冲计数
}
上面的程序叠加,为了每1秒,特加了2语句!
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|Archiver|手机版|Arduino中文社区

GMT+8, 2024-12-5 03:41 , Processed in 0.072349 second(s), 14 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表