#define button 13
#define led 35
void setup() {
// put your setup code here, to run once:
pinMode(button, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(button, HIGH);
}
#define button 13
#define led 35
void setup() {
// put your setup code here, to run once:
pinMode(button, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(button, HIGH);
}