/*
Wokwi | questions
anyone got a good WIFI smart parking system using the ESP 32?
Raz [E33] - Thursday, April 16, 2026 10:20 AM
The idea is basically to first have an LCD screen that would
show empty/occupied spots for a smart Car parking garage.
Then detect movement with a PIR sensor which would then open a
"gate" by operating a servo (this will be applied for an entry
gate and the exit gate).
Then have around 6 spaces with IR sensors where if the car positions
itself in front of it. would then be marked a occupied and update
the counter on the LCD.
And my vision for this project is to basically use the ESP 32 to also
make an web dashboard that would allow me to check through the dash board
the information that the LCD would also give. and also act as manual way
to open/close the gates/servos.
*/
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Hello, ESP32!");
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}