Pre-requisite Knowledge Before we start with the understanding of Azure IoT Hub, we should know- Azure Cloud The generic term IoT (Internet of Things) Introduction of Azure IoT Hub Okay, so let’s get started with the actual topic, i.e. Azure IoT Hub, so we’ll first understand that was is it and then why one should use it. Azure IoT Hub is a service hosted in Azure (a cloud platform by Microsoft) which basically manages the IoT devices registered with it by the developers. As it is a Hub, hence it also acts as a Central unit for communication between the devices/ IoT itself. So in simple tern, it can be like a central platform that helps manage the connected devices and also moderates in the communication between the devices as well. So whenever there is a question of authorization, like who’s the boss devices or the IoT Hub, then it is the IoT hub only. Feature of Azure IoT Hub: It is meant for a far high number of devices, so it can be scaled to millions of devices. It ...
Pre-requisite Knowledge Before we start with the understanding of Azure Pipelines, we should know- What is Cloud What is Microsoft Azure Continuous Integration (CI) & Continuous Delivery (CD). Introduction of Azure Pipelines Before getting started into actual topic, let’s get ourselves a brief about the word, PIPELINE. So a Pipeline can be understood as a smooth, fast and automatically traversable path which consists of various elements in a sequential manner. Though it is often the case that the execution is followed in a parallel or tile allotted trend Now coming to Azure Pipelines, it is a simple yet evident service of Microsoft, which helps in automating the building and the testing phases of the projects. In short an Azure pipeline combines both the Continuous Integration (CI) & Continuous Delivery (CD). According to Microsoft docs, below are the supported languages for the Pipelining, as of now: Python Java JavaScript PHP Ruby C# C++ Go To impl...