1

I have 3rd party device that create PWM output which I want to measure it with Arduino, the problem I have is when I shared ground between the two boards which cause the Pulsein output to become zero. (why this is happening, and how to fix it)

The reason I am connecting the ground since I need measure other signals on that board. (All other signals are responding fine)

schematic

simulate this circuit – Schematic created using CircuitLab

code:

#define pulse_ip 3
unsigned long duration;
int ontime,offtime,duty;
float freq,period;
void setup() {
  // put your setup code here, to run once:
  Serial.begin(115200);
  pinMode(pulse_ip, INPUT);
}

void loop() { // put your main code here, to run repeatedly:

ontime = pulseIn(pulse_ip, HIGH); offtime = pulseIn(pulse_ip, LOW); period = ontime + offtime; freq = 1000000.0 / period; duty = (ontime / period) * 100; Serial.print(offtime); Serial.print("-"); Serial.print(ontime); Serial.print("-"); Serial.print(period); Serial.print("-"); Serial.print(freq); Serial.print("-"); Serial.print((duty * 255) / 100); Serial.print("-"); Serial.println(duty); delay(1000);

}

Python Schlange
  • 426
  • 1
  • 4
  • 18
Shahreza
  • 165
  • 2
  • 9

1 Answers1

1

Without connected grounds the signal on the input pin you read with pulseIn must be random noise.

Two pulseIn one waiting for HIGH change and second waiting for LOW don't make sense because for parameter HIGH, pulseIn waits for the pin to go from LOW to HIGH, starts timing, then waits for the pin to go LOW and stops timing. Then it returns the length of the pulse in microseconds.

Juraj
  • 18,264
  • 4
  • 31
  • 49