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