Ijraset Journal For Research in Applied Science and Engineering Technology
Authors: P Girendra, K Srivasthav , K Vignesh, Dr. Y Srinivasulu
DOI Link: https://doi.org/10.22214/ijraset.2023.48862
Certificate: View Certificate
Doorbells are usual signaling devices used to alert the person inside the building to open the door as someone has arrived. Classic doorbells can be seen in every house now a days, which uses simple button and when that button is pressed the bell rings. The doorbell which we are going to make is different from that. We will make a doorbell which is automatic, i.e. it will detect someone in front of it and then it will ring. We will be using a very simple circuit to implement this project. This project can be really beneficial because it’s not always the case that a person can reach the doorbell, so it would be nice if it rings automatically after detecting the person. Also, there is a flexibility that you can adjust the distance according to you by doing some changes in the code you are using to drive the doorbell.We will be using ultrasonic sensor to detect the person and then give the alert using a buzzer. As we know that ultrasonic sensors are used for distance measurement without physical contact for small distances. So it’s the best thing to use ultrasonic sensor for detecting object.
I. INTRODUCTION TO ARDUINO BOARD
A. Defining Arduino Uno
An Arduino is actually a microcontroller based kit which can be either used directly by purchasing from the vendor or can be made at home using the components, owing to its open source hardware feature. It is basically used in communications and in controlling or operating many devices.
B. History
The Arduino project was started at the Interaction Design Institute Ivrea (IDII) in
Ivrea, Italy. At that time, the students used a BASIC Stamp microcontroller at a cost of $50, a considerable expense for many students. In 2003 Hernando Barragán created the development platform Wiring as a Master's thesis project at IDII, under the supervision of Massimo Banzi and Casey Reas. Casey Reas is known for cocreating, with Ben Fry, the Processing development platform. The project goal was to create simple, low cost tools for creating digital projects by non-engineers. The Wiring platform consisted of a printed circuit board (PCB) with an
ATmega168 microcontroller, an IDE based on Processing and library functions to easily program the microcontroller. In 2005, Massimo Banzi, with David Mellis, another IDII student, and David Cuartielles, added support for the cheaper ATmega8 microcontroller to Wiring. But instead of continuing the work on Wiring, they forked the project and renamed it Arduino.The initial Arduino core team consisted of Massimo Banzi, David Cuartielles, Tom Igoe, Gianluca Martino, and David Mellis, but Barragán was not invited to participate.
Following the completion of the Wiring platform, lighter and less expensive versions were distributed in the open-source community. It was estimated in mid-2011 that over 300,000 official Arduinos had been commercially produced, and in 2013 that 700,000 official boards were in users' hands.
In October 2016, Federico Musto, Arduino's former CEO, secured a 50% ownership of the company. In April 2017, Wired reported that Musto had "fabricated his academic record On his company's website, personal LinkedIn accounts, and even on Italian business documents, Musto was until recently listed as holding a PhD from the Massachusetts Institute of Technology. In some cases, his biography also claimed an MBA from New York University." Wired reported that neither university had any record of Musto's attendance, and Musto later admitted in an interview with Wired that he had never earned those degrees. Around that same time, Massimo Banzi announced that the Arduino Foundation would be "a new beginning for Arduino. But a year later, the Foundation still hasn't been established, and the state of the project remains unclear.
The controversy surrounding Musto continued when, in July 2017, he reportedly pulled many Open source licenses, schematics, and code from the Arduino website, prompting scrutiny and outcry.
In October 2017, Arduino announced its partnership with ARM Holdings (ARM). The announcement said, in part, "ARM recognized independence as a core value of Arduino ... without any lock-in with the ARM architecture.” Arduino intends to continue to work with all technology vendors and architectures.
C. Hardware
Arduino is open-source hardware. The hardware reference designs are distributed under a Creative Commons
Attribution Share-Alike 2.5 license and are available on the Arduino website. Layout and production files for some versions of the hardware are also available. Although the hardware and software designs are freely available under copyleft licenses, the developers have requested the name Arduino to be exclusive to the official product and not be used for derived works without permission. The official policy document on use of the Arduino name emphasizes that the project is open to incorporating work by others into the official product. Several Arduino-compatible products commercially released have avoided the project name by using various names ending in -duino Most Arduino boards consist of an Atmel 8bit AVR microcontroller (ATmega8, ATmega168, ATmega328, ATmega1280, or ATmega2560) with varying amounts of flash memory, pins, and features. The 32-bit Arduino Due, based on the Atmel SAM3X8E was introduced in 2012. The boards use single or double-row pins or female headers that facilitate connections for programming and incorporation into other circuits. These may connect with add-on modules termed shields. Multiple and possibly stacked shields may be individually addressable via an I²C serial bus. Most boards include a 5 V linear regulator and a 16 MHz crystal oscillator or ceramic resonator. Some designs, such as the Lily Pad, run at 8 MHz and dispense with the onboard voltage regulator due to specific form-factor restrictions.
Arduino microcontrollers are preprogrammed with a boot loader that simplifies uploading of programs to the on-chip flash memory. The default bootloader of the Arduino Uno is the Optiboot bootloader. Boards are loaded with program code via a serial connection to another computer. Some serial Arduino boards contain a level shifter circuit to convert between RS-232 logic levels and transistor–transistor logic (TTL) level signals.
Current Arduino boards are programmed via Universal Serial Bus (USB), implemented using USB-to-serial adapter chips such as the FTDI FT232. Some boards, such as later-model Uno boards, substitute the FTDI chip with a separate AVR chip containing USB-to-serial firmware, which is reprogrammable via its own ICSP header. Other variants, such as the Arduino Mini and the unofficial Boarduino, use a detachable ix | P a g ex | P a g e
USB-to-serial adapter board or cable, Bluetooth or other methods. When used with traditional microcontroller tools, instead of the Arduino IDE, standard AVR in-system programming (ISP) programming is used.
The Arduino board exposes most of the microcontroller's I/O pins for use by other circuits. The Diecimila,[a] Duemilanove,[b] and current Uno[c] provide 14 digital I/O pins, six of which can produce pulse-width modulated signals, and six analog inputs, which can also be used as six digital I/O pins. These pins are on the top of the board, via female 0.1-inch (2.54 mm) headers. Several plug-in application shields are also commercially available. The Arduino Nano, and Arduino-compatible Bare Bones Board and Boarduino boards may provide male header pins on the underside of the board that can plug into solderless breadboards.
Many Arduino-compatible and Arduinoderived boards exist. Some are functionally equivalent to an Arduino and can be used interchangeably. Many enhance the basic Arduino by adding output drivers, often for use in school-level education, to simplify making buggies and small robots. Others are electrically equivalent, but change the form factor, sometimes retaining compatibility with shields, sometimes not. Some variants use different processors, of varying compatibility.
D. Different Types of Arduino Boards
a. Arduino Uno
The Uno is a huge option for your initial Arduino. It consists of 14-digital I/O pins, where 6-pins can be used as PWM(pulse width modulation outputs), 6-analog inputs, a reset button, a power jack, a USB connection and more. It includes everything required to hold up the microcontroller; simply attach it to a PC with the help of a USB cable and give the supply to get started with a AC-to-DC adapter or battery
b. Lily Pad Arduino Board
The Lily Pad Arduino board is a wearable etextile technology expanded by Leah “ Buechley” and considerately designed by “Leah and SparkFun”. Each board was imaginatively designed with huge connecting pads & a smooth back to let them to be sewn into clothing using conductive thread. This Arduino also comprises of I/O, power, and also sensor boards which are built especially for e-textiles. These are even washable!
c. Arduino Mega (R3) Board
The Arduino Mega is similar to the UNO’s big brother. It includes lots of digital I/O pins (from that, 14-pins can be used as PWM o/ps), 6-analog inputs, a reset button, a power jack, a USB connection and a reset button. It includes everything required to hold up the microcontroller; simply attach it to a PC with the help of a USB cable and give the supply to get started with a AC-to-DC adapter or battery.The huge number of pins make this Arduino board very helpful for designing the projects that need a bunch of digital i/ps or o/ps like lots buttons.
d. Arduino Leonardo Board
The first development board of an Arduino is the Leonardo board. This board uses one microcontroller along with the USB. That means, it can be very simple and cheap also. Because this board handles USB directly, program libraries are obtainable which let the Arduino board to follow a keyboard of the computer, mouse, etc.
e. Principle
The Decoder IC, then decodes the serial data to parallel data and transmits the Logic ‘0’ to Arduino. In the Arduino UNO's, it is programmed such that, whenever a Logic '0' is detected by the Arduino, the buzzer is turned on. Hence, whenever the button is pressed, the buzzer is turned on wirelessly
II. METHODOLOGY
2. Step 2: Schmatics Design of transmitter circuit design of receiver circuit
3. Step3: Code implementation Code uploading to arduino board
A. Components Required
a. 434 MHz RF Transmitter Module
b. HT – 12E Encoder IC
c.750 KΩ Resistor
d. Push Button
e. Power Supply
f. Connecting Wires
g. Prototypin Board (Bredboard)
2. For Receiver
a. Arduino UNO
b. 434 MHz RF Receiver Module
c. HT- 12D Decoder IC
d. 33 KΩ Resistor
e. Small Buzzer
f. Power Supply
g. Connecting Wires
h. Prototyping Board (Breadboard)
B. Auduino Uno
The Arduino Uno is an open- source micro controller based on the Microchip ATmega328p microcontroller and developed by Arduino. The board is equipped with sets of digital and analog input/output (I/O) pins that may be interfaced to various expansion boards (Shields) and other circuits. The Arduino Uno is an open-source micro controller ATmega328P microcontroller and developed by Arduino.cc The boards equipped with sets of digital and analog inputs/output (I/O) pins that maybe interfaced to various expansion boards (shields) and other circuits.
C. Bread Board
A breadboard is a solderless device for temporary prototype with electronics and test circuit designs. Most electronic components in electronic circuits can be interconnected by inserting their leads or terminals into the holes and then making connections through wires where appropriate.
D. RF Transmitter – Receiver Module
The wireless communication in this project is implemented using RF Transmitter – Receiver pair. A 434 MHz RF Transmitter – Receiver Module is used in this project. Up to 500 feet or 150 meters of distance can be possible with this module.
E. Buzzer
A buzzer or beeper is an audio signalling device, which may be mechanical, electromechanical, or piezoelectric (piezo for short)
F. Circuit Diagram
2. Design of Transmitter Circuit
The transmitter consists of a 434 MHz RF Transmitter Module, HT – 12E Encoder IC, 750 KΩ Resistor and a push button. The design of the transmitter circuit is very simple. Pins 18 and 9 are connected to supply and ground terminals respectively. The data out pin (Pin 17) of HT – 12E is connected to data pin of the RF Transmitter Module. A 750 KΩ is connected between the oscillator pins (Pins 15 and 16) of the HT – 12E. The transmission enable pin (Pin 14) is connected to ground. A push button is connected between AD8 (Pin 10) and ground. Other connections are shown in the circuit diagram.
3. Design of Receiver Circuit
The receiver part of the project consists of 434 MHz RF Receiver Module, HT – 12D Decoder IC, 33 KΩ
Resistor, Arduino UNO and a small buzzer.Pins 18 and 9 i.e. VDD and Vss pins are connected to supply and ground terminals respectively. The data in pin (Pin 14) of the decoder IC is connected to the data pin of the RF Receiver Module. A 33 KΩ Resistor is connected between the oscillator pins (Pins 15 and 16) of the decoder ,The D8 pin (Pin 10) is connected to Pin 2 (or any digital I/O pin) of Arduino UNO. A small buzzer is connected between pin 11 of Arduino and ground.
G. Working
The aim of this project is to design a simple wireless doorbell. The working of the project is explained here. For explaining the working of the project, all the connections are made as per the circuit diagram. Make sure that the Transmitter Part of the Project is switched on before the Receiver Part. This is to ensure that the RF Transmitter and Receiver Modules are properly paired.
In order to ring the bell (or buzzer in this case), we need to push the button on the transmitter side of the circuit. When the button is pushed on the transmitter side, a logic ‘0’ will be detected by the Encoder IC. The Encoder IC will transmit this data serially through the RF Transmitter Module. The transmitted data will be received by the RF Receiver Module and is given to the Decoder IC. The Decoder IC, then decodes the serial data to parallel data and transmits the Logic ‘0’ to Arduino. In the Arduino UNO’s, it is programmed such that, whenever a Logic ‘0’ is detected by the Arduino, the buzzer is turned on. Hence, whenever the button is pressed, the buzzer is turned on wirelessly
H. Code
void setup()
{
pinMode(14, INPUT); pinMode(11, OUTPUT);
digitalWrite(11, LOW);
}
void loop()
{
if(digitalRead(14)==LOW)
{
digitalWrite(11, HIGH); delay(1400); digitalWrite(11, LOW); delay(700); digitalWrite(11, HIGH); delay(1400); digitalWrite(11, LOW); delay(700); digitalWrite(11, HIGH); delay(1400); digitalWrite(11, LOW);
delay(700);
} else
{
digitalWrite(11, LOW);
} }
I. Advantages
J. Disadvantages
K. Limitations
L. Applications
We conclude that this automatic wireless doorbell is used for security purpose. It can be used not only in house hold but also in public places.
[1] https://www.electronicshub.org/wirelessdoor-bell/ [2] https://www.youtube.com/watch?v=_yiEAXdjJm4 - action=share [3] https://circuitdigest.com/microcontrollerprojects/wireless-doorbell-using [4] https://create.arduino.cc/projecthub/moham madsohail0008/touchless-doorbell [5] Lucas M. Alvarez Hamann, Luis Lezcano Airaldi, Mariya E.Baez Monlinas, Mariano Rujana, Juliana Torre, Sergio Gramajo National technological University- Resistencia faculty French 414, Resistencia,Chaco,Argentina “Smart doorbell: an ICT solution to enhance inclusion of disabled people”,978-92-6115821-7/CFP1538E-ART@2015ITU [6] Janki venukumar, Naveen. S ,PG student,Dept.of ECE, LBS-Institute Of Technology for women, Trivedrum, India [7] “Aurdino Based Door Access Control”.International Journal of Research in Advent Technology,vol.4,no.8,august2016.EISSN:2321-9637. [8] Pushpanjali Kumari, Prathibha Goel, Dr. S.R.N. Reddy, CSE department, IGDTUW, Kashmere Gate, Delhi “IoT Based Wireless Alert System for Deaf and Hard of Hearing”,978-1-4673-97773/16$31.00@2016IEEE
Copyright © 2023 P Girendra, K Srivasthav , K Vignesh, Dr. Y Srinivasulu. This is an open access article distributed under the Creative Commons Attribution License, which permits unrestricted use, distribution, and reproduction in any medium, provided the original work is properly cited.
Paper Id : IJRASET48862
Publish Date : 2023-01-26
ISSN : 2321-9653
Publisher Name : IJRASET
DOI Link : Click Here