This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

ultrasonic sensor

Hello,

I am using HC-SR04 ultrasonic sensor and nrf52840dk. To measure the distance I have to find out for how long the ECHO pin of the sensor remains high.

for that I am doing-

/*wait till echo pin is high*/

while(nrf_gpio_pin_read(Echo) == 1);

{
  // reset counter
  count = 0;
  }

 while(nrf_gpio_pin_read(Echo) == 0);

{

further calculations...

but I am not able to get out of second while loop am I doing something wrong here.

Parents Reply Children
No Data
Related