12 lines
185 B
C++
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:
|
||
|
}
|