Summary: When IR Sensor detects an obstacle it sends signal to the arduino board.Arduino board based on code shows total number of vacant places,this will be displays on LCD display.Further,idea was to send this data to the web server which will display the number of vacant places and other information on the webpage.web page is created by using HTML language. Fig: IR Based Parking System Setup Components Used: 4 -IR Sensors 1 -16x2 LCD Display Arduino Board 10k Potentiomete r Arduino code: #include <Wire.h> #include <LiquidCrystal.h> #define sensor1 x = 9 #define sensor2 y = 8 #define sensor3 i = 6 #define sensor4 j = 7 int sensor1,sensor2,sensor3,sensor4; LiquidCrystal lcd(12, 11, 5, 4, 3, 2); byte b[8] = { B00000, B00000, B10001, B01010, B00100, B01010, B10001 }; byte s[8] = { B00000, B00000, B0...