pio: start platformIO projects

This commit is contained in:
2018-04-27 07:54:33 -07:00
parent c98ca59a5e
commit 0fb6dce050
7 changed files with 87 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#include <Arduino.h>
const int ledPin = 17;
void setup() {
pinMode(ledPin, OUTPUT);
digitalWrite(ledPin, HIGH);
}
void loop() {
// put your main code here, to run repeatedly:
}