- Arduino Digital Pin 7 - Connected to pin DB7 of LCD Display
- Arduino Digital Pin 8 - Connected to pin DB6 of LCD Display
- Arduino Digital Pin 9 - Connected to pin DB5 of LCD Display
- Arduino Digital Pin 10 - Connected to pin DB4 of LCD Display
- Arduino Digital Pin 11 - Connected to pin E of LCD Display
- Arduino Digital Pin 12 - Connected to pin RS of LCD Display
- Potentiometer '+' pin - Connected to Vcc
- Potentiometer '-' pin - Connected to GND
- Potentiometer 'Data' pin - Connected to pin V0 of LCD Display
- Vcc 5V - Connected to pin LED+ of LCD display (through 220 ohms resistor)
- GND - Connected to pin LED- of LCD display
- Vcc 5V - Connected to pin VDD of LCD display
- GND - Connected to pin Vss of LCD Display
- GND - Connected to pin R/W of LCD Display
HC-SR 501 PIR sensor: This sensor can be mounted on the car to detect if another vehicle is present in the detectable range (3 meters to 7 meters) in front of the vehicle. This range is adjustable, based on tuning of a potentiometer present on the board. We have kept the default setting of potentiometer. Please refer to the links in the References section below to get details of this sensor. However the input/output pins are shown in the below picture for reference. The extreme left pin is the Ground pin. The middle pin is Data pin and the extreme right pin is Vcc pin. We have kept the jumper ON. This keeps the sensor in Repeatable Mode. In this mode, The data pin remains HIGH for a specific time interval after the presence of vehicle is sensed in the range. (In the Non-Repeatable Mode, the data pin remains HIGH as long as the presence of vehicle is sensed in the range.) We have not explained the use of potentiometer on the board. However we can understand the use of them with the sites given in the references.
The setup part of the program defines the ledPin as OUTPUT and sets it to be LOW. This makes the LED not glow until a motion is sensed. The data pin of motion sensor which is the pirPin is set to be the INPUT. So we will receive the data for presence of motion over this pin. The LCD can print 16 x 2 characters. Where 16 is the number of columns and 2 is the number of rows. We display the default statement "The interruptions are:" on this LCD display in the setup.
/www.elegoo.com | |
//2016.12.9 | |
#include "pitches.h" | |
#include <LiquidCrystal.h> | |
int ledPin = 6; // LED on Pin 6 of Arduino | |
int pirPin = 2; // Input for HC-S501 | |
int buzzer = 5;//the pin of the passive buzzer | |
int pirValue; // Place to store read PIR Value | |
int duration = 500; // 500 miliseconds | |
int melody[] = {NOTE_B0, NOTE_DS8}; | |
int interruption = 0; | |
// initialize the library with the numbers of the interface pins | |
LiquidCrystal lcd(7, 8, 9, 10, 11, 12); | |
void setup() { | |
Serial.begin(9600); | |
pinMode(ledPin, OUTPUT); | |
pinMode(pirPin, INPUT); | |
pinMode(buzzer,OUTPUT);//initialize the buzzer pin as an output | |
digitalWrite(ledPin, LOW); | |
// set up the LCD's number of columns and rows: | |
lcd.begin(16, 2); | |
// Print a message to the LCD. | |
lcd.print("Interruptions are: "); | |
} | |
void loop() { | |
pirValue = digitalRead(pirPin); | |
digitalWrite(ledPin, pirValue); | |
Serial.println(pirValue); | |
if(pirValue == 1) { | |
tone(buzzer, melody[0], duration); | |
++interruption; | |
lcd.setCursor(0, 1); | |
lcd.print((int)interruption); | |
delay(6000); | |
} | |
} |