Home Automation Using Raspberry Pi via Bluetooth

Home Automation Using Raspberry Pi via Bluetooth 6

[otw_is sidebar=otw-sidebar-1]Home Automation Using Raspberry Pi via BluetoothIn this post I will discuss the Home automation system based on the Raspberry Pi using the Bluetooth protocol and I will use the Python IDLE to write the code for this Wireless Home Automation System. This post will discuss all the requirements needed to make the Bluetooth Home Automation System based on the Raspberry Pi. As described in the earlier posts Raspberry Pi is popular among IoT applications and we can use its built in Bluetooth to perform various IoT based tasks.

[otw_is sidebar=otw-sidebar-2]

Home Automation Using Raspberry Pi via Bluetooth

After reading this post you will be able to install all the Packages needed to be able to talk to the Raspberry Pi via Bluetooth technology using the Python language. You will also understand the circuit used to control the AC home appliances.

[otw_is sidebar=otw-sidebar-3]

Components Required:
  1. Raspberry Pi.
  2. Relay module.
  3. Smart phone with app (described later in the post).
  4. A bulb.

 Raspberry Pi via Bluetooth

Raspberry Pi Bluetooth:

The Raspberry Pi has a built in Bluetooth which makes it very handy and easy to use in our wireless applications. But like many other peripherals on the Raspberry Pi Bluetooth also is disabled by default. So we need to install some packages to be able to manipulate the Bluetooth in the Raspberry Pi. The Python library for Bluetooth wireless communication also needs some libraries to install in the Raspberry Pi, so you can write the code for Bluetooth in the Python IDLE. If you have all the required files for the Bluetooth wireless communication between the Raspberry Pi and other Bluetooth devices you need to follow some instructions to be able to pair up with the Bluetooth devices. The method of installation of all the Bluetooth files for the Raspberry Pi will be discussed in detail in the sections to follow.

 

Raspberry Pi Python GPIO library:

Along with the required files for the Bluetooth we will also need the GPIO python library to be able to manipulate the General Purpose Input / Output pins of the Raspberry Pi as we will need to actuate the relay to control the AC appliances of the home automation system. Thus to be able the write the code for Home Automation System we will need to install the Python GPIO library for the Raspberry Pi. Fortunately latest Raspbian versions have already installed GPIO python library. If you do not have the library this post will guide to install the Python GPIO library for the Raspberry Pi.

 

Home Automation Using Raspberry Pi via Bluetooth,Raspberry Pi Python GPIO library:

 

Installing the Requisite Files for Home Automation System based on Raspberry Pi for Bluetooth and GPIO:

As noted earlier we will need two important types of requisites to build the Home Automation System.
Installing the Bluetooth files:

[otw_is sidebar=otw-sidebar-3]

Let us now know what are the important files required for Bluetooth wireless communication and how to install them.

Step1:

First of all open the terminal window of the Raspberry Pi.

terminal window of the Raspberry Pi

Step2:

Now type the following command in the terminal window:

terminal window of the Raspberry Pi 4

 

sudo apt-get install Bluetooth blueman bluez

Here we have installed “blueman” and “bluez” by typing the above command. Bluez is the Linux Bluetooth protocol stack which supports all the core Bluetooth protocols and Blueman provides the Graphical Interfaces for interacting and managing the available Bluetooth devices.
These are the files for the Bluetooth wireless communication protocol now let us install the Python library for Bluetooth wireless communication.

Step3:

Type the following command in the terminal window of the Raspberry Pi:

                                   sudo apt-get install python-bluetooth

This will install the required files for supporting code writing in the Python IDLE.

Step4:

Now after Bluetooth install the Python GPIO library.

sudo apt-get install python-rpi.gpio

Now we have installed all the required files for the Bluetooth based Home Automation System.

Raspberry Pi Bluetooth Devices Pairing:

Now you have installed all the libraries and packages it is now time to connect to your smart phone with Raspberry Pi via Bluetooth. This step is also quite simple.

[otw_is sidebar=otw-sidebar-3]

Step1:

Type the following command in the terminal window:
sudo Bluetoothctl

Step2:

Now type the following command:
scan on
After the execution of this statement you will see the MAC addresses of all the available devices near you Raspberry Pi.

Step3:

Type the following command in the terminal with the MAC address of your Mobile phone in the parenthesis like below:
pair <address of your Bluetooth device come here>
After the execution of this statement you will be asked for the passcode, write your passcode and then write the same passcode in your mobile and you will have pairing between the Raspberry Pi and your Smart Phone via Bluetooth communication.
Now let us discuss the circuit configuration for the Home Automation System:

 

Hardware Description:

 

Let us discuss the circuit configuration needed for the Home Automation based on the Raspberry Pi. The AC Home appliance to be controlled remotely is connected to the relay and the relay with a proper circuitry will be connected to the Raspberry Pi proper in sense that as we know the Raspberry Pi is unable to give as much current as required to drive the relay so we need a circuit for this power to on off the relay which in turn on and off the home appliances. The whole circuit will be discussed in detail in the following discussion. The Raspberry Pi GPIO pin is connected to the Relay Board which is connected to the Home appliance. We will make the GPIO high and LOW remotely with smart phone over Bluetooth to control the switch. The block diagram of the project is shown below:

The detailed circuit diagram is as shown in the following figure.

Notice that the GPIO pins number 21 is connected to the Relay module. The state of this pin will control state of the AC home appliance that is connected.

Raspberry Pi Python Bluetooth Code:

Now let us begin writing the code Raspberry Pi based home automation system based on Bluetooth technology.

                       Step1:

Open the Python IDLE in the Raspberry Pi.

                     Step2:

You can copy and paste the following code in the Python IDLE.

import bluetooth
import RPi.GPIO as GPIO   #calling for header file which helps in using GPIOs of PI
BULB=21
GPIO.setmode(GPIO.BCM)    #programming the GPIO by BCM pin numbers. (like PIN40 as GPIO21)
GPIO.setwarnings(False)
GPIO.setup(BULB,GPIO.OUT)  #initialize GPIO21 (Relay connected at this pin) as an output Pin
GPIO.output(BULB,0)
server_socket=bluetooth.BluetoothSocket( bluetooth.RFCOMM )
port = 1
server_socket.bind(("",port))
server_socket.listen(1)
client_socket,address = server_socket.accept()
print "Accepted connection from ",address
while 1:
data = client_socket.recv(1024)
print "Received: %s" % data
if (data == "0"):  #if '0' is sent from the Android App, turn OFF the CFL bulb
print ("AC light OFF")
GPIO.output(BULB,0)
if (data == "1"):  #if '1' is sent from the Android App, turn OFF the CFL bulb
print ("AC light ON")
GPIO.output(BULB,1)
if (data == "q"):
print ("Quit")
break
client_socket.close()
server_socket.close()

Notice the Python libraries we have imported in order to write this. So the installation of these libraries is now clear. The GPIO pin number 21 is used in this code as can be seen in the code above.

Raspberry Pi Home Automation Mobile App:

This is the most important part in the whole project. You need to download and install that mobile application which supports Bluetooth wireless communication using the RFCOMM protocol. There are a number of mobile applications available online. Here I am using the BlueTerm mobile application.

That is all for now I hope this post would be helpful for you. In the next post I will come up with more interesting applications of the Raspberry Pi. till then stay connected, keep reading and enjoy learning.

6 Comments

  1. For reliable automotive locksmith services in Boston, trust our expert team. From car key replacement to broken key extraction, we ensure your vehicle’s security is our priority. Explore our direct car key offer and comprehensive lock repair solutions.

  2. In case your sub zero wine cooler doesn’t function optimally, there’s no need to lose hope. A solution may lie in obtaining necessary repairs, which should be pursued without delay. Our repair company proudly serves Chicago and its surrounding areas, specializing in sub zero wine cooler and storage repairs.

  3. We assure you professional and affordable AC and Furnace service and repair. So call us today to schedule an appointment with our expert technicians.

  4. hire a SEO company in Michigan that does search engine optimization, you’re investing in your local SEO presence

  5. Wonderful post however , I was wanting to know if you could write a litte more on this subject?
    I’d be very grateful if you could elaborate a little bit further.

    Kudos!

    Here is my page :: vpn special

  6. Have you ever considered about adding a little bit more than just
    your articles? I mean, what you say is fundamental and all.
    But just imagine if you added some great photos or videos to give your posts more, “pop”!
    Your content is excellent but with pics and videos, this website could definitely be one of the greatest in its field.
    Fantastic blog!

    Also visit my site vpn code 2024

Leave a Reply

Your email address will not be published. Required fields are marked *