400
An LED with the anode hooked up to a myPin would appear to be
// the loop function runs over and over again forever
void loop() {
digitalWrite(myPin, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(myPin, LOW); // turn the LED off by making the voltage LOW
}
What is on?