Skip to main content

Projet_prototypage_groupe_Haji_Hamoudi_Ben Aboubou

 


// the loop function runs over and over again forever
void loop() {
digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
}

Capture d’écran 2025-02-07 à 11.24.16.png
------
#define LED 6

// the setup function runs once when you press reset or power the board
void setup() {
// initialize digital pin LED as an output.
pinMode(LED, OUTPUT);
}

// the loop function runs over and over again forever
void loop() {
digitalWrite(LED, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(LED, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
}
Capture d’écran 2025-02-07 à 11.24.04.png
----
#define BOUTON 2

void setup() {
pinMode(BOUTON,INPUT);
Serial.begin(9600);
}

void loop() {
int etat_bouton = digitalRead(BOUTON);

if (etat_bouton == 1){
Serial.println("Bouton pressé");
}

delay(100);
}
Capture d’écran 2025-02-07 à 11.42.40.png