Modifications

Sauter à la navigation Sauter à la recherche
Ligne 7 : Ligne 7 :     
== Fonctions ==
 
== Fonctions ==
=== millis(void) ===     
+
=== millis ===     
 
  unsigned int millis(void)
 
  unsigned int millis(void)
    
This returns a number representing the number if milliseconds since your program called one of the wiringPiSetup functions. It returns an unsigned 32-bit number which wraps after 49 days.
 
This returns a number representing the number if milliseconds since your program called one of the wiringPiSetup functions. It returns an unsigned 32-bit number which wraps after 49 days.
   −
=== micros(void) ===
+
=== micros ===
 
  unsigned int micros(void)
 
  unsigned int micros(void)
    
This returns a number representing the number of microseconds since your program called one of the wiringPiSetup functions. It returns an unsigned 32-bit number which wraps after approximately 71 minutes.
 
This returns a number representing the number of microseconds since your program called one of the wiringPiSetup functions. It returns an unsigned 32-bit number which wraps after approximately 71 minutes.
   −
=== delay(unsigned int howLong) ===
+
=== delay ===
 
  void delay (unsigned int howLong)
 
  void delay (unsigned int howLong)
    
This causes program execution to pause for at least howLong milliseconds. Due to the multi-tasking nature of Linux it could be longer. Note that the maximum delay is an unsigned 32-bit integer or approximately 49 days.
 
This causes program execution to pause for at least howLong milliseconds. Due to the multi-tasking nature of Linux it could be longer. Note that the maximum delay is an unsigned 32-bit integer or approximately 49 days.
   −
=== delayMicroseconds(unsigned int howLong) ===
+
=== delayMicroseconds ===
 
  void delayMicroseconds (unsigned int howLong)
 
  void delayMicroseconds (unsigned int howLong)
  
29 918

modifications

Menu de navigation