How I built a Smart Home Automation System with Angular and Node.js on a Raspberry Pi without relying on any external cloud services in just one week
In the last days I spent some nights designing and developing a home automation system based exclusively on JavaScript with the use of Angular and Node.js. And like with any other project — the planning involved some deep research on the internet and it turned out that there are many fishes in the sea —plenty of solutions on how to implement a home automation system, some offer paid services in “the cloud” and others explain how to build your own using a technology called MQTT.None of the solutions made any sense to me — all options were either expensive or some have inconvenient implementations or even security flaws.
But before we go any further let’s explain what MQTT is:MQTT stands for MQ Telemetry Transport. It is a publish/subscribe, extremely simple and lightweight messaging protocol, designed for constrained devices and low-bandwidth, high-latency or unreliable networks. The design principles are to minimise network bandwidth and device resource requirements whilst also attempting to ensure reliability and some degree of assurance of delivery. These principles also turn out to make the protocol ideal of the emerging “machine-to-machine” (M2M) or “Internet of Things” world of connected devices, and for mobile applications where bandwidth and battery power are at a premium. —MQTT.org
MQTT Publish/Subscribe Architecture
Why wasn’t I convinced for using MQTT or by any of the solutions I found on the internet? Two reasons:
Comic by Geek and Poke
One might think that “the cloud” provides the ability to access your home appliances from anywhere in the world via the internet. But think about this: When your home network doesn’t have internet connection “the cloud” becomes redundant, but more importantly: You can still make your home automation system accessible from the internet using using port-forwarding even if it’s hosted on your local network. This is when it “clicked” for me and thought about hosting the whole system on a Raspberry Pi and keeping it in my local network.
A Raspberry Pi Model 3
This won’t be a coding tutorial where I dive deep into coding since this project is open-source and I will be publishing everything on GitHub. I will only demonstrate how to implement your own home automation system and will be going through each step. If you’re a developer please fork the repository and get involved in improving it.
I estimate that it will take about 40 minutes to finish this whole setup plus minus any time spent online searching for solutions for installation errors.
**What is needed?**For this to work a Raspberry Pi si required. In my example I’m using a Raspberry Pi 3, but it should work with most versions.
Raspbian is a free operating system based on Debian Linux, and it is optimized for Raspberry Pi.
I recommend the headless “LITE” version. It has no desktop environment or any graphical user interface and it’s remotely accessible from a computer or device on the same network via SSH. Keeping things simple since this is the only way we are going to access the Raspberry Pi and the LITE version has all the functionality we’re looking for.
To get the Raspberry Pi ready to boot we need to:
When the Raspberry Pi has finished booting up, log in using username: pi and password: raspberry
Skip this step if you chose to connect with an Ethernet cable.
Open the wpa-supplicant configuration file
$ sudo nano /etc/wpa_supplicant/wpa_supplicant.conf
2. add the following at the bottom of the file while adding your wifi name and password:
network={
ssid="your_networks_name"
psk="your_networks_password"
}
3. Press Ctrl+X to save the code. Confirm with Ythen Enter
4. Reboot the Raspberry Pi with the following command:
$ sudo reboot
Now that the Raspberry Pi is connected to the internet, it’s recommended to change the default password.
Open the Raspberry Pi configuration tool and click the second option “Change User Password” and follow the instructions
$ sudo raspi-config
2. Select option 5 “Interfacing Options” then activate SSH
3. Reboot the Raspberry Pi. When it’s up, you have SSH enabled and it’s ready to be accessed remotely from your desktop computer
$ sudo reboot
Now finally the part when we install the required software on the Raspberry Pi. This part can be executed directly on the Pi through the terminal using a HDMI monitor and a USB keyboard, but for convenience — and since we enable remote SSH connection, we’re going to connect from another desktop environment. This is the best and easiest way to remotely access and control the Pi whenever changes and configurations are needed.
So basically this is how you can access the command line interface of a Raspberry Pi remotely from another computer or any device on the same network using SSH. This can be done in two ways:
Using the Command Prompt or PowerShell (I’m using Windows on a Desktop computer) replace with your username and IP address
$ ssh username@ipaddress
If you do not know the IP address, type “hostname -I" in the Raspberry Pi command line.
2. The second method by using a client program like PuTTY or any other functioning client SSH software. Here’s a guide on how to do it
Before installing anything, it’s recommended to update the Raspberry Pi’s operating system and packages. Doing this regularly will keep it up to date.
Update the system packages list using the following command
$ sudo apt-get update
2. Upgrade all your installed packages to their latest version
$ sudo apt-get dist-upgrade
3. Download and install the latest version of Node.js
// To download
$ curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
// To install
$ sudo apt-get install -y nodejs
// Check if the installation was successful:
$ node -v
4. Install the Git version-control system
$ sudo apt-get install git
5. Check the current work directory using this command
$ pwd
/* It will probably print "/home/pi"
"pi" is the user directory */
It’s recommended to clone the project’s repository under the user directory but you can navigate somewhere else if you’re sure.
6. Clone the repository from
$ git clone https://github.com/ameer157/smarthaus.git
Make sure to navigate inside the directory using
$ cd smarthaus
Now before installing any npm packages using “npm install” please visit the following link and change npm’s default directory. This is very important since it will prevent any npm permission errors and allows you to install packages globally without using sudo. Using sudo with npm is not recommended and should be avoided.
7. Install all the required packages for the project
$ npm install
It’s recommended to install the Angular CLI globally using:
$ npm install -g @angular/cli
Before starting the server we need to build the project using the Angular CLI tool. And lastly, we configure the Raspberry Pi so that it runs the server whenever it boots up.
Build the project using
$ ng build --prod
2. Edit the rc.local file using nano
$ sudo nano /etc/rc.local
3. Add the following on the line before “exit o” then exit and save the file
$ su pi -c 'node /home/pi/smarthaus/server.js < /dev/null &'
The Node.js server is now ready. It will run on every system boot up. Let’s run it now and see if it works using this command:
$ sudo node server
The system in now accessible from any device on your network via the Raspberry Pi’s IP address. You can make it accessible from the internet using port forwarding, but it’s not recommended to implement this feature now since the system is still in development and doesn’t have a user login system.
Please go ahead and fork this project and get involved in developing the missing parts 👍
We got ourselves a working home automation system running safely on a Raspberry Pi in our local network without the use of “the cloud” or somebody else’s’ server.
Real-time device status synchronization
Adding a new device synchronising data on-demand
My Raspberry Pi sitting next to my Fingbox and router in the living room 😍
Rick and Morty providing tech support 🛸👽
I hope you enjoyed reading,Please follow and share for more tech stuff 🤖💖