Mecanica tecnica
�
�
// Pin 13 has an LED connected on most Arduino boards. // give it a name: int led = 13;
�
�
�
�
�
// the setup rou$ne runs once when you press reset: void setup() {
// ini$alize the digital pin as an output.
pinMode(led, OUTPUT);
}
�
�
�
�
�
�
�
// the loop rou$ne runs over and over again forever: void loop() {
digitalWrite(led, HIGH);
// turn the LED on (HIGH is the voltage level)
delay(500);
// wait for a second
digitalWrite(led, LOW);
// turn the LED off by making the voltage LOW
delay(500);
// wait for a second }
Hello Blink ”s” � Repita o exercício anterior para 3 leds. Use um vetor de inteiros para definir os pinos u$lizados.
Monitor Serial � Monitor usado para que possamos comunicar nossa placa com o computador. � Muito ú$l para a depuração do programa.
� Basicamente conectamos a placa no computador e através da tela podemos ver as informações enviadas pela placa.
Funções Importantes � pinMode