int buttonPin = 3;
void setup() {
// put your setup code here, to executed once:
Serial.begin(9600);
pinMode(buttonPin, OUTPUT);
Serial.println("This is setup code");
}
void loop() {
digitalWrite(buttonPin, HIGH);
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}