Files
attinycore-makefile-tests/85-tinycore-test/Blink.ino
Thomas von Dein 9ef5896d67 +tests
2020-02-17 19:43:07 +01:00

25 lines
641 B
C++

/* -*-c++-*-
Blink
Turns on an LED on for one second, then off for one second, repeatedly.
This example code is in the public domain.
*/
void setup() {
// initialize the digital pin as an output.
// Pin 13 has an LED connected on most Arduino boards:
Serial.begin(9600);
Serial.print("Press any key: ");
pinMode(PB0, OUTPUT);
}
void loop() {
digitalWrite(13, HIGH); // set the LED on
delay(1000); // wait for a second
digitalWrite(13, LOW); // set the LED off
delay(1000); // wait for a second
if (Serial.available()) {
Serial.println("blinked\n");
}
}