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

12 lines
185 B
C++

#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:
}