int ambouba = 4 ;
void setup() {
  // put your setup code here, to run once:
pinMode(ambouba , OUTPUT);
}

void loop() {
  digitalWrite(ambouba ,1);
  delay(2000);
  digitalWrite(ambouba , 0);
  delay(500);
  // put your main code here, to run repeatedly:
}