You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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