/* Lycée PE MARTIN
Le 2/11/2023
Titre : LED5corr (Pull-Up)
Matériels : Arduino Uno, Led RGB, 3 switchs
Description : accès à un Parking décrit dans le sujet du TP GPIO
Lien : https://webge.fr/tsin.php#
*/
// Entrées, sorties
#define LEDR 12 // Feu s'éclaire en rouge
#define LEDV 8 // Feu s'éclaire en vert
#define G 4 // Parking plein
#define H 3 // Hauteur véhicule > 2m
#define P 2 // Présence véhicule
void setup() {
// Configuration des E/S
pinMode(LEDR, OUTPUT);
pinMode(LEDV, OUTPUT);
pinMode(G, INPUT_PULLUP);
pinMode(H, INPUT_PULLUP);
pinMode(P, INPUT_PULLUP);
}
void loop() {
// Lecture des entrées
bool g = !(digitalRead(G));
bool h = !(digitalRead(H));
bool p = !(digitalRead(P));
// Traitement
bool ledR = !(!g && !h && p);
bool ledV = !g && !h && p;
// Ecriture sur les sorties
digitalWrite(LEDR,ledR);
digitalWrite(LEDV,ledV);
}
G
H
P
LED_RGB
R1
R2
1
0
12
8
4
3
2
220
220
rouge
vert
<< Accès de Parking >>
P : Simulation capteur présence véhicule
H : Simulation capteur hauteur véhicule > 2m
G : Simulation contact parking plein
LED_RGB : Simulation du feu bicolore
VERT : ouverture barrière - ROUGE : barrière fermée