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
}
------
#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
}
----
#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);
}
-----
#define POT A0
void setup() {
pinMode(POT,INPUT);
Serial.begin(9600);
}
void loop() {
int valeur = analogRead(POT);
Serial.print("valeur du potentiomètre : ");
Serial.println(valeur);
delay(2000);
}
----
documentation capteur