Mostrando postagens com marcador Language Reference structure setup. Mostrar todas as postagens
Mostrando postagens com marcador Language Reference structure setup. Mostrar todas as postagens

terça-feira, 7 de fevereiro de 2012

Language Reference : Structure setup ()

setup()

The setup() function is called when a sketch starts. Use it to initialize variables, pin modes, start using libraries, etc. The setup function will only run once, after each powerup or reset of the Arduino board.

Example

int buttonPin = 3;

void setup()
{
  Serial.begin(9600);
  pinMode(buttonPin, INPUT);
}

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