const int RED_PIN = 1;
void setup() {
// put your setup code here, to run once:
pinMode(RED_PIN, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite (RED_PIN, LOW);
}
const int RED_PIN = 1;
void setup() {
// put your setup code here, to run once:
pinMode(RED_PIN, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite (RED_PIN, LOW);
}