int LEDPin = 13;
void setup() {
// put your setup code here, to run once:
pinMode(LEDPin, INPUT);
digitalWrite(LEDPin, HIGH);
}
void loop() {
// put your main code here, to run repeatedly:
}
int LEDPin = 13;
void setup() {
// put your setup code here, to run once:
pinMode(LEDPin, INPUT);
digitalWrite(LEDPin, HIGH);
}
void loop() {
// put your main code here, to run repeatedly:
}