Fonctions | |
unsigned long | millis (void) |
Returns the number of milliseconds since the Arduino board began running the current program. Plus de détails... | |
unsigned long | micros (void) |
Returns the number of microseconds since the Arduino board began running the current program. Plus de détails... | |
void | delay (unsigned long ms) |
Pauses the program for the amount of time (in miliseconds) specified as parameter. (There are 1000 milliseconds in a second.) Plus de détails... | |
void | SysTick_DefaultHandler (void) |
void delay | ( | unsigned long | dwMs | ) |
Pauses the program for the amount of time (in miliseconds) specified as parameter. (There are 1000 milliseconds in a second.)
dwMs | the number of milliseconds to pause (uint32_t) |
unsigned long micros | ( | void | ) |
Returns the number of microseconds since the Arduino board began running the current program.
This number will overflow (go back to zero), after approximately 70 minutes. On 16 MHz Arduino boards (e.g. Duemilanove and Nano), this function has a resolution of four microseconds (i.e. the value returned is always a multiple of four). On 8 MHz Arduino boards (e.g. the LilyPad), this function has a resolution of eight microseconds.
unsigned long millis | ( | void | ) |
Returns the number of milliseconds since the Arduino board began running the current program.
This number will overflow (go back to zero), after approximately 50 days.
void SysTick_DefaultHandler | ( | void | ) |