int LEDPin = 8;
void setup() {
// put your setup code here, to run once:
pinMode(LEDPin,OUTPUT);
Serial.begin(9600);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(LEDPin,HIGH);
delay(200);
digitalWrite(LEDPin,LOW);
delay(200);
Serial.println("Oui Cheff");
delay(1000);
}