0

i want to find time duration between two pulse of same signal. That's mean time duration between falling edge of first pulse and rising edge of second signal. Here, i'm using Arduino Uno board. Here, Image show my two pulse of same signal. i want to find time t.

enter image description here

I want some logic or arduino code.

Pramod Gharu
  • 1,105
  • 3
  • 9
  • 18
Hasan
  • 157
  • 8
  • this is not a coding service. try to solve it yourself. if you have problems with it, describe what you have tried, what you expect to happen and what happens instead. provide your arduino code – Piglet Dec 15 '16 at 17:20

1 Answers1

3

Check function pulseIn() It will solve your problem. Note: Just put LOW as parameter.

karanrp
  • 230
  • 1
  • 10