Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

12345678910111213141516
  1. // Only for testing with the Makefile - not actually part of the core library
  2. #include <Arduino.h>
  3. int led = 13;
  4. void setup() {
  5. pinMode(led, OUTPUT);
  6. }
  7. void loop() {
  8. digitalWrite(led, HIGH);
  9. delay(1000);
  10. digitalWrite(led, LOW);
  11. delay(1000);
  12. }