Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

17 lines
257B

  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. }