https://github.com/kumaraditya303/esp8266-blynk-home-security
This project uses Blynk IOT platform and sends email and mobile notification when an intruder is detected via PIR Sensor. The email sent contains the time when the intruder was detected by fetching the current time from http://pool.ntp.org/ via NTPClient.
https://github.com/kumaraditya303/esp8266-blynk-home-security
Last synced: 4 months ago
JSON representation
This project uses Blynk IOT platform and sends email and mobile notification when an intruder is detected via PIR Sensor. The email sent contains the time when the intruder was detected by fetching the current time from http://pool.ntp.org/ via NTPClient.
- Host: GitHub
- URL: https://github.com/kumaraditya303/esp8266-blynk-home-security
- Owner: kumaraditya303
- License: mit
- Created: 2020-10-24T11:59:00.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2020-11-13T08:37:43.000Z (over 4 years ago)
- Last Synced: 2025-02-23T02:56:59.356Z (4 months ago)
- Language: C++
- Homepage: https://create.arduino.cc/projecthub/rahuladitya303/esp8266-pir-home-security-notifier-b8245c
- Size: 2.93 KB
- Stars: 3
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# ESP8266 Blynk Home Security -> An IOT Project
## This project uses Blynk IOT platform and sends email and mobile notification when an intruder is detected via PIR Sensor. The email sent contains the time when the intruder was detected by fetching the current time from http://pool.ntp.org/ via NTPClient.
# Get Started!
## Prerequisites
- [Python](https://www.python.org/)
- Install PlatformIO```bash
$ pip install platformio
```- [Blynk Account](https://blynk.io/)
- NodeMCU or ESP8266 compatible board## Setup
> This projet uses [PlatformIO](https://platformio.org/) for compilation and uploading to the board.
- Create account on Blynk App
- Create a new project and add email and notification widgets.- Download the project using git.
```bash
$ git clone https://github.com/kumaraditya303/ESP8266-Blynk-Home-Security.git
```- Update the credentials in [config.h](./include/config.h) and the token sent at your email.
- Connect PIR Sensor or Pin D5 or as per your configuration.
- Connect your board with the computer and compile the project.
```bash
$ platformio run
```- Done!
# Project made and maintained by [Kumar Aditya](https://github.com/kumaraditya303)