arduino上的脉冲生成和读出

时间:2016-05-17 10:18:01

标签: c arduino arduino-uno pulse

目前我正在开展一个项目,我必须从Arduino中读出脉冲并检查结果是高还是低。

我必须编写自己的代码来生成Arduino的高/低输出:

//Pulse Generator Arduino Code  
int potPin = 2;    // select the input pin for the knob
int outputPin = 13;   // select the pin for the output
float val = 0;       // variable to store the value coming from the sensor

void setup() {
  pinMode(outputPin, OUTPUT);  // declare the outputPin as an OUTPUT
  Serial.begin(9600);
}

void loop() {
  val = analogRead(potPin);    // read the value from the k
  val = val/1024;
  digitalWrite(outputPin, HIGH);    // sets the output HIGH
  delay(val*1000);
  digitalWrite(outputPin, LOW);    // sets the output LOW
  delay(val*1000);
}

它使用旋钮来改变脉冲之间的延迟。

我目前正尝试用另一个Arduino读取高/低数据(让我们称之为" 计算Arduino ")只需将2连接到电缆上" outputPin"到Arduino伯爵的一个港口。

我使用digitalRead无延迟地读取端口。

//Count Arduino Code
int sensorPin = 22;
int sensorState = 0;

void setup()   {                
    pinMode(sensorPin, INPUT);
    Serial.begin(9600);
}

void loop(){
    sensorState = digitalRead(sensorPin);
    Serial.println(sensorState);
}

首先,它每1秒尝试一次脉冲,但结果却是一堆低点和高点的垃圾邮件。总是3低,3高,重复。它甚至不是每1秒接近一次,而是每1毫秒更接近一次。

我无法弄清楚我做错了什么。是时间问题还是有更好的方法来检测这些变化?

1 个答案:

答案 0 :(得分:1)

  

一堆低点和高点的垃圾邮件

...如果两个Arduinos的GND没有连接,就会发生。

另外,如果串行缓冲区不会溢出,那么你的读取arduino会在每个循环周期打印,只有几微秒。

更好的打印输出更改,或使用LED来显示正在发生的事情。

void loop(){
    static bool oldState;
    bool sensorState = digitalRead(sensorPin);
    if (sensorState != oldState) {
       Serial.println(sensorState);
       oldState = sensorState;
    }
}