Void

From Microduino Wiki
Jump to: navigation, search

void

Void is used only in the function declaration. It It indicates that this function won’t return any data to its called function.

  • Example
//The function is executed in “setup” and “loop”.
//There is no data returned to the high level program. 

void setup()
{
// ...
}
 
void loop()
{
// ...
}

[Return to Arduino Syntax Manual]