Arduino Based Wireless Doorbell Using 433MHZ RF

by Utsource in Circuits > Arduino

761 Views, 0 Favorites, 0 Comments

Arduino Based Wireless Doorbell Using 433MHZ RF

Arduino-Wireless-Doorbell-using-RF-Module-Setup.jpg
Hi guys in this instructables we will learn how to make a wireless Doorbell using Arduino and a 433 MHZ RF module.

Things You Need

Km5Zu-2RIncAUweU7uG7IhyWPySZ0SqIgAI0-vk9w7767_IkthCPCcsirj2GGmXF4IdQDg8UVpHVLVM6CXnzFsG1hnAdSkK7BIhIOtEldXoZiDsvzsPo-6o0rD6Mda7UyOE=w456-h323-nc.png
1575989441836.jpg

For this instructables we will need following things :

RF module
Arduino :

Buzzer
Push-button
Breadboard :

Connecting wires :

Circuit

20191210_183856.jpg
20191210_183829.jpg
Tx circuit :

The Arduino pin 5 is connected to the one end of the doorbell switch, and the other end of the switch is connected to the supply voltage. A pull-down resistor of 10kohm is connected to pin 5 as shown in the fig. Pin 11 is connected to the data pin of the transmitter module. Vcc is connected to the supply voltage, and the ground pin of the transmitter module is grounded.

In here I used a breadboard for connecting the modules, and a push-button is used as a doorbell switch.



RX circuit :

Here, we connect pin 7 of the Arduino to the buzzer positive terminal, and the negative terminal is grounded. A supply voltage of VCC is given to the receiver module, and the GND pin of the module is connected to the ground. The out pin of the receiver module is connected to the 12th pin of the Arduino.

The receiver module consists of 4 pins in which one pin is grounded, and another one pin is for giving VCC supply, and the remaining two pins are used for data transfer. In the above diagram, a buzzer is connected to the digital 7th pin of the Arduino, and the 12th pin of the Arduino is connected to the receiver module output pin.

Code

20191121_193959.jpg
Please copy the following code and upload it to the arduino Board :

// ask_transmitter.pde
// -*- mode: C++ -*-
// Simple example of how to use RadioHead to transmit messages
// with a simple ASK transmitter in a very simple way.
// Implements a simplex (one-way) transmitter with an TX-C1 module

#include "RH_ASK.h"
#include "SPI.h" // Not actually used but needed to compile

RH_ASK driver;
// RH_ASK driver(2000, 2, 4, 5); // ESP8266 or ESP32: do not use pin 11


void setup()
{
Serial.begin(9600); // Debugging only
pinMode(5,INPUT);
if (!driver.init())
Serial.println("init failed");
}

void loop()
{
if(digitalRead(5)==HIGH){
const char *msg = "a";
driver.send((uint8_t *)msg, strlen(msg));
driver.waitPacketSent();
delay(200);
}
}

Doorbell Receiver Code
#include "RH_ASK.h"
#include "SPI.h" // Not actualy used but needed to compile
#include "pitches.h" //add Equivalent frequency for musical note
#include "themes.h" //add Note vale and duration

RH_ASK driver;

void setup()
{
Serial.begin(9600); // Debugging only

if (!driver.init())
Serial.println("init failed");
else
Serial.println("done");
}

void Play_Pirates()
{
for (int thisNote = 0; thisNote < (sizeof(Pirates_note)/sizeof(int)); thisNote++) {

int noteDuration = 1000 / Pirates_duration[thisNote];//convert duration to time delay
tone(8, Pirates_note[thisNote], noteDuration);

int pauseBetweenNotes = noteDuration * 1.05; //Here 1.05 is tempo, increase to play it slower
delay(pauseBetweenNotes);
noTone(8); //stop music on pin 8
}
}

void loop()
{
uint8_t buf[1];
uint8_t buflen = sizeof(buf);

if (driver.recv(buf, &buflen)) // Non-blocking
{
Serial.println("Selected -> 'He is a Pirate' ");
Play_Pirates();
Serial.println("stop");
}
}

Test the Doorbell

Screenshot_20191210-183957__01.jpg
After connecting everything together and uploading the code to Arduino boards then plug the power and whenever someone pushes button on the TX side then we can hear doorbell making sound on RX side.