Skip to main content
deleted 5 characters in body
Source Link
dda
  • 1.6k
  • 1
  • 12
  • 18

If did not misunderstoodmisunderstand, you want a longer delay. Why don't you use a for loop in order to obtain such a delay.

for(int i = 0; i < 50; i++)
  {
    delay(1000);
}

This produces 50 seconds instead of 1 second. You can replace 1000 and 50 according to your needs. This is just an example.

If did not misunderstood, you want a longer delay. Why don't you use a for loop in order to obtain such a delay.

for(int i = 0; i < 50; i++)
 {
    delay(1000);
}

This produces 50 seconds instead of 1 second. You can replace 1000 and 50 according to your needs. This is just an example.

If did not misunderstand, you want a longer delay. Why don't you use a for loop in order to obtain such a delay.

for(int i = 0; i < 50; i++) {
    delay(1000);
}

This produces 50 seconds instead of 1 second. You can replace 1000 and 50 according to your needs. This is just an example.

Source Link
Zgrknr
  • 163
  • 4

If did not misunderstood, you want a longer delay. Why don't you use a for loop in order to obtain such a delay.

for(int i = 0; i < 50; i++)
{
    delay(1000);
}

This produces 50 seconds instead of 1 second. You can replace 1000 and 50 according to your needs. This is just an example.