In my upcoming series of posts, I will explain how to create IOT hub in Azure, how to create an IOT device using the Azure code and how to integrate our IOT Azure with Node-Red.
First of all, let us see what is IOT?
As per Wikipedia:
The Internet of things (IoT) is the network of physical devices, vehicles, and other items embedded with electronics, software, sensors, actuators, and network connectivity which enable these objects to collect and exchange data.
what is Node red?
Node-RED is a programming tool for wiring together hardware devices, APIs and online services in new and interesting ways.
It provides a browser-based editor that makes it easy to wire together flows using the wide range of nodes in the palette that can be deployed to its runtime in a single click.
It is basically used for Internet of things(IOT) as it is a flow-based programming.
It is browser based flow editing and it is built on Node.js
In this post, I will explain how to create IoT Hub in Azure.
Let us go step by step:
Make sure you have an account in Azure. You can create a free account which has the validity for a month.
First of all, we will create IOT Hub in Azure:
Give some useful name and click on Create:
It will take some time and once the process is complete, it will show below message:
Once it is done, you can search newly create IOT hub from resource groups as below:
Click on Shared Access policy and then click on iothubowner to get the connection string of your IOT:
Save the connection string as shown below:
You have just created your first IOT Hub.
In my next post, I will show how to create your IOT device(We will use Azure’s sample code for that) and then will integrate it with Node-red.