mirror of
https://codeberg.org/scip/attinycore-makefile-tests.git
synced 2025-12-17 19:20:57 +01:00
+tests
This commit is contained in:
24
841-tinycore-test/Blink.ino
Normal file
24
841-tinycore-test/Blink.ino
Normal file
@@ -0,0 +1,24 @@
|
||||
/* -*-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");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user