Compare commits

..

No commits in common. "c90fa6490094e5a9b04262d3e9c2aa040943a5e9" and "4a13808e4855a7917026d5042426fba1ff0699b4" have entirely different histories.

5 changed files with 19 additions and 0 deletions

19
src/blink.cpp.bak Normal file
View File

@ -0,0 +1,19 @@
#include <Arduino.h>
#define LED 2
void setup() {
// put your setup code here, to run once:
//Serial.begin(115200);
pinMode(LED, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(LED, HIGH);
//Serial.println("LED is on");
delay(1000);
digitalWrite(LED, LOW);
//Serial.println("LED is off");
delay(1000);
}