#include const int ledPin = 17; void setup() { pinMode(ledPin, OUTPUT); digitalWrite(ledPin, HIGH); } void loop() { // put your main code here, to run repeatedly: }