mirror of
https://codeberg.org/scip/attinycore-makefile-tests.git
synced 2025-12-16 19:00:57 +01:00
25 lines
641 B
C++
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");
|
|
}
|
|
}
|