sandbox/pio/nrf52/test01/src/main.cpp

12 lines
185 B
C++
Raw Normal View History

2018-04-27 14:54:33 +00:00
#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:
}