const int pinled1= 5;
void setup() {
// put your setup code here, to run once:
pinMode(pinled1, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(pinled1, HIGH);
delay(2000);
digitalWrite(pinled1, LOW);
delay(1000);
}