The project demonstrates an intelligent door which sends out email notification to the owner when there is an intrusion. This is achieved by using ADXL345 accelerometer which detects the change in motion of the door and raspberry pi to communicate to the AWS IoT console. Based on the messages from the AWS IoT console, AWS SNS will send out email notification to the owner.
AWS IoT console's MQTT Protocol is used for achieving this. MQTT is a machine to machine messaging protocol widely used in Internet of Things projects. The protocol has MQTT Broker (Server) and MQTT Clients. In our case AWS IoT acts as a secure MQTT Broker and Raspberry pi acts as MQTT Client. MQTT follows publisher-subscriber model. A message published to a topic will be received in all clients which has subscribed to that topic. Hence two-way communication is easily possible with MQTT.
Platform Explanation:- AWS IoT Console: Amazon Web Services recenlty launched support for the IoT. It is a very secured platform compared to the other open source and free platfroms. You will have to register your device first and download certificates before publishing the data to the cloud.
- AWS SNS Console: SNS is used to send out push notification by various means (HTTP, Email, Mobile etc.) In this project Email notification is chosen as most of the users uses email application in their mobile. No separte application is required to trigger push notifcaiton.
- Raspberry Pi: Popularly known as low-cost credit card sized computer is a simple yet powerful ARM based computer runs Linux operating system. The default raspbian OS comes with preinstalled popular programming languages such as C++, python etc.
Raspberry Pi is very easy to setup. Follow this official getting started guide, once done open terminal window. Before start coding, lets connect ADXL345 accelerometer to the Raspbbery Pi. The connection is simple. Connect VCC -- VCC, GND -- GND, SCL -- SCL, SDL -- SDL. Schematic is provided below:
ADXL345 accelerometer communicate to the master device through I2C communication. I2C is not enabled in raspberry pi by default.
Run the following commands sequentially to install necessary libraries for I2C:
$ sudo apt-get install python-smbus
$ sudo apt-get install i2c-tools
We will have to enable the I2C in raspberry pi configuration window so that the I2C module loads by default.
The following steps will show you do that:
Then reboot the raspberry pi.
With the accelerometer connected type the following command in the terminal.
$ sudo i2cdetect -y 1
If you have made the connection correclty, you should get output like this:
53 says that the in the address 53 accelerometer in connected.
Setting up the environment:Create a new folder names aws-iot for this project by typing the following command.
$ mkdir aws-iot
$ cd aws-iot
Now download the pimoroni accelerometer library by entering the following command:
$ curl https://raw.githubusercontent.com/pimoroni/adxl345-python/master/adxl345.py > adxl345.py
The library helps to reduce the complexity of interfacing the ADXL345 accelerometer.
The raspberry pi is going to communicate with the AWS server though MQTT protocol. So we need to install mqtt client library for python.
$ sudo pip install paho-mqtt
Setting up AWS IoT:Once you sign up for the Amazon Webservice select the AWS IoT console.
In order to connect a device to the AWS IoT, we need to create a resource in it.
Select Create Thing button
Give a name for your thing. Since we are going to connect raspberry pi, we will give the name as "raspberry_pi". No need to add any attributes. Press Create button.
Once you have created the thing, you can view it by either of the following two buttons.
This will open a small window on the right. You can see that the Linked Certificate field is empty. We need to have a certificate and key to get a device connected. To generate these press connect a device button.
Although we are going to use Python as our programming language, you can generate the certificates and key by selecting the sdk as Node JS.
In the raspberry pi, create a folder named in the aws-iot folder and place the downloaded files in it. I use WinSCP to achieve this.
In addition to the certificate and key files, aws also need certificate file from Symantec. Download that by running the following command in the cert folder.
$ curl https://www.symantec.com/content/en/us/enterprise/verisign/roots/VeriSign-Class%203-Public-Primary-Certification-Authority-G5.pem > rootCA.pem
Detecting the intrusion:I have placed my accelerometer in the door such that the x arrow in the acceleromter is facing top. With my orientation of the accelerometer when the door is at rest I get a negative values in the Z axis. When someone opens the door the Z axis values comes to a positive or zero and goes back to the negative values. If it happens so, I will publish a string "Intrusion detected" to the mqtt topic "home/door". The logic can be found in the attached code.
Run the file typing the following command. Make sure the file is inside the aws-iot folder.
$ sudo python intrusionDetection.py
Viewing MQTT messages in the AWS IoT console:AWS IoT has a console to view the mqtt message posted from the connected device.
Select MQTT Client in the top right corner of your dashboard.
Select Device Gateway connection and enter the client ID as raspberry_pi and press connect.
Once connected you will receive a notification like this.
Subscribe to the topic "home/door"
Once subscribed,when there is a intruder you will receive the message in the console.
Select AWS SNS from the services and press "get started" button:
Select Create Topic:
Give the desired Topic Name and Display name and press create topic
In the next screen, select Create Subscription button
Select the protocol as Email and enter the target email ID.
Once you have create the subscription, you will see that the status as pending confirmaton.
Open the target email id and confirm the subscription:
Once confirmed the subspriton refresh the SNS dashboard. You will see that the Subscription ID will be generated.
We have succefully configured the SNS. We have to create a rule in AWS IoT so that if we receive any message in the topic "home/door" it should be routed to the SNS.
Go to the AWS IoT Console and select "Create resource" and select "Create a rule" button.
Enter the name as "Intrusion_Rule". Enter the attirbute as " * " (as we didn't enter any attributes in our thing and enter the topic name as "home/door".
In the Choose action dropdown select the option as "Send Message as a push notification"
In the SNS Target, select "Intrusion"
We have to create a role. Select create a role button. It will open a new tab and should take you to the IAM Management Console.
Press Allow, it will create a new role successfully and close the tab automatically.
Click on Add Action button and press create button.
You can see that the Rule is added and Enabled in the dashboard.
Now run the intrusionDetection.py file again in the raspberry pi. In addition to the MQTT messages, you will also receive email notification, when there is an intruder.
If you have email notification enabled in your mobile, you will also receive push notification in your mobile.
Comments