int ledPin = 13;   // LED en broche 13
int buttonPin = 8; // Bouton-poussoir en broche 8
int buttonState;   // Variable pour enregistrer l'état du bouton
int tempo;

void setup() {
  Serial.begin(9600);
  pinMode(ledPin, OUTPUT);   // Broche LED en tant que sortie
  pinMode(buttonPin, INPUT); // Broche bouton-poussoir en tant qu'entrée
  digitalWrite(buttonPin, HIGH);
}

void loop() {
  tempo = analogRead(A0);
  tempo=tempo+1;
  Serial.println(tempo);
  buttonState = digitalRead(buttonPin);
  if (buttonState == LOW) {
    digitalWrite(ledPin, HIGH);
    delay(tempo);
  } else {
    digitalWrite(ledPin, LOW);
  }
}