Arduino – Time

  • Post author:
  • Post category:Arduino
  • Post comments:1 Comment
Time

Arduino provides four different time manipulation functions. They are −

S.No.Function & Description
1delay () function
The way the delay() function works is pretty simple. It accepts a single integer (or number) argument. This number represents the time (measured in milliseconds).
2delayMicroseconds () function
The delayMicroseconds() function accepts a single integer (or number) argument. There are a thousand microseconds in a millisecond, and a million microseconds in a second.
3millis () function
This function is used to return the number of milliseconds at the time, the Arduino board begins running the current program.
4micros () function
The micros() function returns the number of microseconds from the time, the Arduino board begins running the current program. This number overflows i.e. goes back to zero after approximately 70 minutes.

Next Topic:-Click Here

This Post Has One Comment

Leave a Reply