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.

16 line
211B

  1. /*
  2. *@author James McKenzie
  3. *@lang C89 Based
  4. *@contact lunarised@outlook.com
  5. */
  6. void setup() {
  7. pinMode(13, OUTPUT);
  8. }
  9. void loop() {
  10. digitalWrite(13, HIGH);
  11. delay(100);
  12. digitalWrite(13, LOW);
  13. delay(100);
  14. }