#define Pin_BOUTON 5
#define Led_rouge 3
#define APPUYE LOW

void setup() {
  // put your setup code here, to run once:
  pinMode(Pin_BOUTON, INPUT_PULLUP);
  pinMode(Led_rouge, OUTPUT);
}

void loop() {

    digitalWrite(Led_rouge, !digitalRead(Pin_BOUTON));
 
}