Prérequis :
Matériel :
- 1 x Carte Arduino Uno
- 1 x Capteur de choc
- 1 x Bouton
- 1 x Led
- 1 x Résistances 220 Ω
- Fils de connexion
- 1 x Breadboard
Vidéo de démonstration :
Schéma de câblage :
Code :
int Bt = 2; //Bouton connecté sur PIN2
int cptchoc = 3; //Capteur de choc connecté sur PIN3
int Led = 4; //Led connectée sur PIN3
boolean etatLed;
void setup() {
pinMode(Led,OUTPUT);
pinMode(Bt,INPUT_PULLUP);
pinMode(cptchoc,INPUT_PULLUP);
Serial.begin(9600);
}
void loop() {
if (digitalRead(cptchoc) == HIGH){
etatLed = 1;
}
if (digitalRead(Bt) == LOW){
etatLed = 0;
}
digitalWrite(Led,etatLed);
Serial.print("Etat bouton :");
Serial.println(digitalRead(Bt));
Serial.print("Etat capteur choc :");
Serial.println(digitalRead(cptchoc));
delay(200);
}
Nombre de vues: 895
J’aime ça :
J’aime chargement…