{"id":3957,"date":"2023-11-04T23:13:57","date_gmt":"2023-11-04T23:13:57","guid":{"rendered":"http:\/\/localhost:10003\/deploying-iot-hub-and-handling-device-data\/"},"modified":"2023-11-05T05:48:26","modified_gmt":"2023-11-05T05:48:26","slug":"deploying-iot-hub-and-handling-device-data","status":"publish","type":"post","link":"http:\/\/localhost:10003\/deploying-iot-hub-and-handling-device-data\/","title":{"rendered":"Deploying IoT Hub and handling device data"},"content":{"rendered":"

Introduction<\/h2>\n

The Internet of Things (IoT) is an ecosystem of physical devices, vehicles, home appliances, and other items embedded with electronics, software, sensors, and network connectivity capabilities. With the increasing adoption of IoT, there has been a rise in the demand for IoT Hub deployment. IoT Hub is a cloud service that enables communication between IoT devices, back-end services, and applications.<\/p>\n

In this tutorial, we will discuss how to deploy IoT Hub and handle device data. The tutorial is divided into three parts. In the first part, we will discuss setting up an IoT hub with Azure. In the second part, we will discuss how to simulate a device and send data to the IoT hub. Finally, in the third part, we will discuss how to retrieve data from the IoT hub.<\/p>\n

Setting up an IoT hub with Azure<\/h2>\n

Azure IoT Hub is a cloud service that enables reliable and secure communication between IoT devices and the cloud. Here are the steps for setting up an IoT hub with Azure.<\/p>\n

1. Sign in to Azure<\/h3>\n

Navigate to the Azure portal and sign in with your account credentials. If you don’t have an Azure account, you can create a free account.<\/p>\n

2. Create an IoT hub<\/h3>\n

Once you have signed in to Azure, create a new IoT hub by following these steps:<\/p>\n

    \n
  1. Navigate to the IoT Hub service in Azure.<\/p>\n<\/li>\n
  2. \n

    Click the “Add” button at the top of the page.<\/p>\n<\/li>\n

  3. \n

    Enter a name for the IoT hub. Choose a name that is descriptive and meaningful.<\/p>\n<\/li>\n

  4. \n

    Select a subscription, resource group, and region for the IoT hub.<\/p>\n<\/li>\n

  5. \n

    In the “Pricing and scale tier” section, choose the pricing tier that best fits your needs.<\/p>\n<\/li>\n

  6. \n

    Click the “Review + create” button to review your settings.<\/p>\n<\/li>\n

  7. \n

    Finally, click the “Create” button to create the IoT hub.<\/p>\n<\/li>\n<\/ol>\n

    3. Configure the IoT hub<\/h3>\n

    After you have created an IoT hub, you will need to configure it before you can use it to manage your devices. Here are the steps for configuring your IoT hub:<\/p>\n

      \n
    1. Navigate to the IoT hub in Azure.<\/p>\n<\/li>\n
    2. \n

      Click on the “Shared access policies” tab.<\/p>\n<\/li>\n

    3. \n

      Click on the “iothubowner” policy.<\/p>\n<\/li>\n

    4. \n

      Copy the “Connection string-primary key” value.<\/p>\n<\/li>\n<\/ol>\n

      4. Create a container registry<\/h3>\n

      To deploy an IoT Edge module, you will need to have a container registry. Here are the steps for creating a container registry in Azure:<\/p>\n

        \n
      1. Navigate to the Azure portal.<\/p>\n<\/li>\n
      2. \n

        Click the “Create a resource” button.<\/p>\n<\/li>\n

      3. \n

        In the search box, type “Container Registry” and press Enter.<\/p>\n<\/li>\n

      4. \n

        Select the “Container Registry” option.<\/p>\n<\/li>\n

      5. \n

        Click the “Create” button.<\/p>\n<\/li>\n

      6. \n

        Enter a name for the container registry.<\/p>\n<\/li>\n

      7. \n

        Choose a subscription, resource group, and region for the container registry.<\/p>\n<\/li>\n

      8. \n

        Choose the “Standard” pricing tier.<\/p>\n<\/li>\n

      9. \n

        Click the “Review + create” button to review your settings.<\/p>\n<\/li>\n

      10. \n

        Finally, click the “Create” button to create the container registry.<\/p>\n<\/li>\n<\/ol>\n

        5. Create an IoT Edge device<\/h3>\n

        The next step is to create an IoT Edge device, which is a virtual representation of your physical IoT device. Here are the steps for creating an IoT Edge device:<\/p>\n

          \n
        1. Navigate to the Azure portal.<\/p>\n<\/li>\n
        2. \n

          Click the “Create a resource” button.<\/p>\n<\/li>\n

        3. \n

          In the search box, type “IoT Edge” and press Enter.<\/p>\n<\/li>\n

        4. \n

          Select the “IoT Edge” option.<\/p>\n<\/li>\n

        5. \n

          Click the “Create” button.<\/p>\n<\/li>\n

        6. \n

          Enter a name for the IoT Edge device.<\/p>\n<\/li>\n

        7. \n

          Choose a subscription, resource group, and region for the IoT Edge device.<\/p>\n<\/li>\n

        8. \n

          Click the “Review + create” button to review your settings.<\/p>\n<\/li>\n

        9. \n

          Finally, click the “Create” button to create the IoT Edge device.<\/p>\n<\/li>\n<\/ol>\n

          6. Configure the IoT Edge device<\/h3>\n

          After you have created an IoT Edge device, you will need to configure it before you can use it to manage your devices. Here are the steps for configuring your IoT Edge device:<\/p>\n

            \n
          1. Navigate to the IoT Edge device in Azure.<\/p>\n<\/li>\n
          2. \n

            Click on the “Set Modules” tab.<\/p>\n<\/li>\n

          3. \n

            Click on the “Add” button.<\/p>\n<\/li>\n

          4. \n

            Enter a name for the module.<\/p>\n<\/li>\n

          5. \n

            Choose the “IoT Edge Module” option.<\/p>\n<\/li>\n

          6. \n

            Click on the “Create options” link.<\/p>\n<\/li>\n

          7. \n

            Enter the following JSON configuration:<\/p>\n<\/li>\n<\/ol>\n

            {\n  \"Env\": {\n    \"myValue\": \"hello world\"\n  },\n  \"Image\": \"<your container registry name>\/edgeapp:v1.0\",\n  \"Cmd\": [ \"\/bin\/sh\", \"-c\", \"npm start\" ]\n}\n<\/code><\/pre>\n
              \n
            1. \n

              Click on the “Create” button to create the module.<\/p>\n<\/li>\n

            2. \n

              Finally, click on the “Configure” button to configure the IoT Edge device.<\/p>\n<\/li>\n<\/ol>\n

              Simulating a device and sending data to the IoT hub<\/h2>\n

              In this section, we will discuss how to simulate a device and send data to the IoT hub. Here are the steps for simulating a device:<\/p>\n

              1. Install the Azure IoT device SDK<\/h3>\n

              To simulate a device and send data to the IoT hub, you will need to install the Azure IoT device SDK. Here are the steps for installing the Azure IoT device SDK:<\/p>\n

                \n
              1. Navigate to the Azure IoT device SDK website.<\/p>\n<\/li>\n
              2. \n

                Select the programming language you are using.<\/p>\n<\/li>\n

              3. \n

                Download and install the Azure IoT device SDK for your programming language.<\/p>\n<\/li>\n<\/ol>\n

                2. Create a new device in the IoT hub<\/h3>\n

                After you have installed the Azure IoT device SDK, you will need to create a new device in the IoT hub. Here are the steps for creating a new device:<\/p>\n

                  \n
                1. Navigate to the IoT hub in Azure.<\/p>\n<\/li>\n
                2. \n

                  Click on the “IoT devices” tab.<\/p>\n<\/li>\n

                3. \n

                  Click on the “New” button.<\/p>\n<\/li>\n

                4. \n

                  Enter a name for the new device.<\/p>\n<\/li>\n

                5. \n

                  Click on the “Create” button to create the new device.<\/p>\n<\/li>\n

                6. \n

                  Click on the new device to view its properties.<\/p>\n<\/li>\n

                7. \n

                  Copy the “Connection string-primary key” value.<\/p>\n<\/li>\n<\/ol>\n

                  3. Update the device code<\/h3>\n

                  Now you will need to update the device code to include the connection string for your device. Here is an example of the device code:<\/p>\n

                  var connectionString = \"{your device connection string}\";\n\nvar client = require('azure-iot-device').Client.fromConnectionString(connectionString);\n\nvar Message = require('azure-iot-device').Message;\n\nvar interval;\n\nfunction startSendingMessage() {\n\n  interval = setInterval(function(){\n\n    var message = new Message('data from device');\n\n    console.log(\"Sending message: \" + message.getData());\n\n    client.sendEvent(message, printResultFor('send'));\n\n  }, 1000);\n\n}\n\nfunction stopSendingMessage() {\n\n  clearInterval(interval);\n\n}\n\nclient.open(function (err) {\n\n  if (err) {\n\n    console.error('Could not connect: ' + err.message);\n\n  } else {\n\n    console.log('Client connected');\n\n    startSendingMessage();\n\n  }\n\n});\n\nfunction printResultFor(op) {\n\n  return function printResult(err, res) {\n\n    if (err) console.log(op + ' error: ' + err.toString());\n\n    if (res) console.log(op + ' status: ' + res.statusCode + ' ' + res.statusMessage);\n\n  };\n\n}\n\n<\/code><\/pre>\n

                  4. Run the device code<\/h3>\n

                  After you have updated the device code, you can run it to simulate a device and send data to the IoT hub. Here are the steps for running the device code:<\/p>\n

                    \n
                  1. Open a terminal or command prompt.<\/p>\n<\/li>\n
                  2. \n

                    Navigate to the directory where you saved the device code.<\/p>\n<\/li>\n

                  3. \n

                    Run the command to start the device: node device.js<\/code><\/p>\n<\/li>\n<\/ol>\n

                    5. Verify that data is being sent to the IoT hub<\/h3>\n

                    Finally, you can verify that data is being sent to the IoT hub by navigating to the IoT Hub in Azure and clicking on the “Messages” tab. You should see the data from your device being displayed.<\/p>\n

                    Retrieving data from the IoT hub<\/h2>\n

                    In this section, we will discuss how to retrieve data from the IoT hub. Here are the steps for retrieving data from the IoT hub:<\/p>\n

                    1. Create a new application in Azure<\/h3>\n

                    To retrieve data from the IoT hub, you will need to create a new application in Azure. Here are the steps for creating a new application:<\/p>\n

                      \n
                    1. Navigate to the Azure portal.<\/p>\n<\/li>\n
                    2. \n

                      Click the “Create a resource” button.<\/p>\n<\/li>\n

                    3. \n

                      In the search box, type “Function App” and press Enter.<\/p>\n<\/li>\n

                    4. \n

                      Select the “Function App” option.<\/p>\n<\/li>\n

                    5. \n

                      Click the “Create” button.<\/p>\n<\/li>\n

                    6. \n

                      Enter a name for the application.<\/p>\n<\/li>\n

                    7. \n

                      Choose a subscription, resource group, and region for the application.<\/p>\n<\/li>\n

                    8. \n

                      Click the “Review + create” button to review your settings.<\/p>\n<\/li>\n

                    9. \n

                      Finally, click the “Create” button to create the application.<\/p>\n<\/li>\n<\/ol>\n

                      2. Create a new Azure Function<\/h3>\n

                      After you have created a new application, you will need to create a new Azure Function. Here are the steps for creating a new Azure Function:<\/p>\n

                        \n
                      1. Navigate to the Azure Function app in Azure.<\/p>\n<\/li>\n
                      2. \n

                        Click on the “Functions” tab.<\/p>\n<\/li>\n

                      3. \n

                        Click on the “New function” button.<\/p>\n<\/li>\n

                      4. \n

                        Select the “HTTP trigger” option.<\/p>\n<\/li>\n

                      5. \n

                        Enter a name for the function.<\/p>\n<\/li>\n

                      6. \n

                        Choose “Anonymous” for the Authorization level.<\/p>\n<\/li>\n

                      7. \n

                        Click on the “Create” button to create the function.<\/p>\n<\/li>\n<\/ol>\n

                        3. Update the function code<\/h3>\n

                        Now you will need to update the function code to retrieve data from the IoT hub. Here is an example of the function code:<\/p>\n

                        module.exports = function (context, req) {\n\n  context.log('JavaScript HTTP trigger function processed a request.');\n\n  const connectionString = '{your IoT hub connection string}';\n\n  const { EventHubClient } = require('@azure\/event-hubs');\n\n  const connectionString = '{your IoT hub connection string}';\n\n  const eventHubClient = EventHubClient.createFromConnectionString(connectionString);\n\n  eventHubClient.receive(\"0\", function (context, event) {\n\n    context.log(`Event received: ${event.body}`);\n\n    context.res = {\n\n      body: `Received event: ${event.body}`\n\n    };\n\n    context.done();\n\n  });\n\n};\n\n<\/code><\/pre>\n

                        4. Test the function<\/h3>\n

                        After you have updated the function code, you can test the function by navigating to the function in the Azure portal and clicking on the “Test” tab. You can enter a test message and click on the “Run” button to test the function. You should see the data from your device being displayed.<\/p>\n

                        5. Retrieve data from the IoT hub<\/h3>\n

                        Finally, you can retrieve data from the IoT hub by navigating to the function app in Azure and clicking on the “Logs” tab. You should see the data from your device being displayed.<\/p>\n

                        Conclusion<\/h2>\n

                        In this tutorial, we discussed how to deploy IoT Hub and handle device data. We covered setting up an IoT hub with Azure, simulating a device and sending data to the IoT hub, and retrieving data from the IoT hub. With this knowledge, you should be able to deploy IoT Hub and handle device data with ease.<\/p>\n","protected":false},"excerpt":{"rendered":"

                        Introduction The Internet of Things (IoT) is an ecosystem of physical devices, vehicles, home appliances, and other items embedded with electronics, software, sensors, and network connectivity capabilities. With the increasing adoption of IoT, there has been a rise in the demand for IoT Hub deployment. IoT Hub is a cloud Continue Reading<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_import_markdown_pro_load_document_selector":0,"_import_markdown_pro_submit_text_textarea":"","footnotes":""},"categories":[1],"tags":[30,215,560,559,562,561,564,563,565,558],"yoast_head":"\nDeploying IoT Hub and handling device data - Pantherax Blogs<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/localhost:10003\/deploying-iot-hub-and-handling-device-data\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Deploying IoT Hub and handling device data\" \/>\n<meta property=\"og:description\" content=\"Introduction The Internet of Things (IoT) is an ecosystem of physical devices, vehicles, home appliances, and other items embedded with electronics, software, sensors, and network connectivity capabilities. With the increasing adoption of IoT, there has been a rise in the demand for IoT Hub deployment. IoT Hub is a cloud Continue Reading\" \/>\n<meta property=\"og:url\" content=\"http:\/\/localhost:10003\/deploying-iot-hub-and-handling-device-data\/\" \/>\n<meta property=\"og:site_name\" content=\"Pantherax Blogs\" \/>\n<meta property=\"article:published_time\" content=\"2023-11-04T23:13:57+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-11-05T05:48:26+00:00\" \/>\n<meta name=\"author\" content=\"Panther\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Panther\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\n\t \"@context\": \"https:\/\/schema.org\",\n\t \"@graph\": [\n\t {\n\t \"@type\": \"Article\",\n\t \"@id\": \"http:\/\/localhost:10003\/deploying-iot-hub-and-handling-device-data\/#article\",\n\t \"isPartOf\": {\n\t \"@id\": \"http:\/\/localhost:10003\/deploying-iot-hub-and-handling-device-data\/\"\n\t },\n\t \"author\": {\n\t \"name\": \"Panther\",\n\t \"@id\": \"http:\/\/localhost:10003\/#\/schema\/person\/b63d816f4964b163e53cbbcffaa0f3d7\"\n\t },\n\t \"headline\": \"Deploying IoT Hub and handling device data\",\n\t \"datePublished\": \"2023-11-04T23:13:57+00:00\",\n\t \"dateModified\": \"2023-11-05T05:48:26+00:00\",\n\t \"mainEntityOfPage\": {\n\t \"@id\": \"http:\/\/localhost:10003\/deploying-iot-hub-and-handling-device-data\/\"\n\t },\n\t \"wordCount\": 1380,\n\t \"publisher\": {\n\t \"@id\": \"http:\/\/localhost:10003\/#organization\"\n\t },\n\t \"keywords\": [\n\t \"\\\"cloud computing\\\"\",\n\t \"\\\"data management\\\"\",\n\t \"\\\"deploying IoT\\\"\",\n\t \"\\\"device data\\\"\",\n\t \"\\\"device management\\\"\",\n\t \"\\\"Internet of Things\\\"\",\n\t \"\\\"IoT connectivity\\\"\",\n\t \"\\\"remote monitoring\\\"\",\n\t \"\\\"smart devices\\\"]\",\n\t \"[\\\"IoT Hub\\\"\"\n\t ],\n\t \"inLanguage\": \"en-US\"\n\t },\n\t {\n\t \"@type\": \"WebPage\",\n\t \"@id\": \"http:\/\/localhost:10003\/deploying-iot-hub-and-handling-device-data\/\",\n\t \"url\": \"http:\/\/localhost:10003\/deploying-iot-hub-and-handling-device-data\/\",\n\t \"name\": \"Deploying IoT Hub and handling device data - Pantherax Blogs\",\n\t \"isPartOf\": {\n\t \"@id\": \"http:\/\/localhost:10003\/#website\"\n\t },\n\t \"datePublished\": \"2023-11-04T23:13:57+00:00\",\n\t \"dateModified\": \"2023-11-05T05:48:26+00:00\",\n\t \"breadcrumb\": {\n\t \"@id\": \"http:\/\/localhost:10003\/deploying-iot-hub-and-handling-device-data\/#breadcrumb\"\n\t },\n\t \"inLanguage\": \"en-US\",\n\t \"potentialAction\": [\n\t {\n\t \"@type\": \"ReadAction\",\n\t \"target\": [\n\t \"http:\/\/localhost:10003\/deploying-iot-hub-and-handling-device-data\/\"\n\t ]\n\t }\n\t ]\n\t },\n\t {\n\t \"@type\": \"BreadcrumbList\",\n\t \"@id\": \"http:\/\/localhost:10003\/deploying-iot-hub-and-handling-device-data\/#breadcrumb\",\n\t \"itemListElement\": [\n\t {\n\t \"@type\": \"ListItem\",\n\t \"position\": 1,\n\t \"name\": \"Home\",\n\t \"item\": \"http:\/\/localhost:10003\/\"\n\t },\n\t {\n\t \"@type\": \"ListItem\",\n\t \"position\": 2,\n\t \"name\": \"Deploying IoT Hub and handling device data\"\n\t }\n\t ]\n\t },\n\t {\n\t \"@type\": \"WebSite\",\n\t \"@id\": \"http:\/\/localhost:10003\/#website\",\n\t \"url\": \"http:\/\/localhost:10003\/\",\n\t \"name\": \"Pantherax Blogs\",\n\t \"description\": \"\",\n\t \"publisher\": {\n\t \"@id\": \"http:\/\/localhost:10003\/#organization\"\n\t },\n\t \"potentialAction\": [\n\t {\n\t \"@type\": \"SearchAction\",\n\t \"target\": {\n\t \"@type\": \"EntryPoint\",\n\t \"urlTemplate\": \"http:\/\/localhost:10003\/?s={search_term_string}\"\n\t },\n\t \"query-input\": \"required name=search_term_string\"\n\t }\n\t ],\n\t \"inLanguage\": \"en-US\"\n\t },\n\t {\n\t \"@type\": \"Organization\",\n\t \"@id\": \"http:\/\/localhost:10003\/#organization\",\n\t \"name\": \"Pantherax Blogs\",\n\t \"url\": \"http:\/\/localhost:10003\/\",\n\t \"logo\": {\n\t \"@type\": \"ImageObject\",\n\t \"inLanguage\": \"en-US\",\n\t \"@id\": \"http:\/\/localhost:10003\/#\/schema\/logo\/image\/\",\n\t \"url\": \"http:\/\/localhost:10003\/wp-content\/uploads\/2023\/11\/cropped-9e7721cb-2d62-4f72-ab7f-7d1d8db89226.jpeg\",\n\t \"contentUrl\": \"http:\/\/localhost:10003\/wp-content\/uploads\/2023\/11\/cropped-9e7721cb-2d62-4f72-ab7f-7d1d8db89226.jpeg\",\n\t \"width\": 1024,\n\t \"height\": 1024,\n\t \"caption\": \"Pantherax Blogs\"\n\t },\n\t \"image\": {\n\t \"@id\": \"http:\/\/localhost:10003\/#\/schema\/logo\/image\/\"\n\t }\n\t },\n\t {\n\t \"@type\": \"Person\",\n\t \"@id\": \"http:\/\/localhost:10003\/#\/schema\/person\/b63d816f4964b163e53cbbcffaa0f3d7\",\n\t \"name\": \"Panther\",\n\t \"image\": {\n\t \"@type\": \"ImageObject\",\n\t \"inLanguage\": \"en-US\",\n\t \"@id\": \"http:\/\/localhost:10003\/#\/schema\/person\/image\/\",\n\t \"url\": \"http:\/\/2.gravatar.com\/avatar\/b8c0eda5a49f8f31ec32d0a0f9d6f838?s=96&d=mm&r=g\",\n\t \"contentUrl\": \"http:\/\/2.gravatar.com\/avatar\/b8c0eda5a49f8f31ec32d0a0f9d6f838?s=96&d=mm&r=g\",\n\t \"caption\": \"Panther\"\n\t },\n\t \"sameAs\": [\n\t \"http:\/\/localhost:10003\"\n\t ],\n\t \"url\": \"http:\/\/localhost:10003\/author\/pepethefrog\/\"\n\t }\n\t ]\n\t}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Deploying IoT Hub and handling device data - Pantherax Blogs","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"http:\/\/localhost:10003\/deploying-iot-hub-and-handling-device-data\/","og_locale":"en_US","og_type":"article","og_title":"Deploying IoT Hub and handling device data","og_description":"Introduction The Internet of Things (IoT) is an ecosystem of physical devices, vehicles, home appliances, and other items embedded with electronics, software, sensors, and network connectivity capabilities. With the increasing adoption of IoT, there has been a rise in the demand for IoT Hub deployment. IoT Hub is a cloud Continue Reading","og_url":"http:\/\/localhost:10003\/deploying-iot-hub-and-handling-device-data\/","og_site_name":"Pantherax Blogs","article_published_time":"2023-11-04T23:13:57+00:00","article_modified_time":"2023-11-05T05:48:26+00:00","author":"Panther","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Panther","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"http:\/\/localhost:10003\/deploying-iot-hub-and-handling-device-data\/#article","isPartOf":{"@id":"http:\/\/localhost:10003\/deploying-iot-hub-and-handling-device-data\/"},"author":{"name":"Panther","@id":"http:\/\/localhost:10003\/#\/schema\/person\/b63d816f4964b163e53cbbcffaa0f3d7"},"headline":"Deploying IoT Hub and handling device data","datePublished":"2023-11-04T23:13:57+00:00","dateModified":"2023-11-05T05:48:26+00:00","mainEntityOfPage":{"@id":"http:\/\/localhost:10003\/deploying-iot-hub-and-handling-device-data\/"},"wordCount":1380,"publisher":{"@id":"http:\/\/localhost:10003\/#organization"},"keywords":["\"cloud computing\"","\"data management\"","\"deploying IoT\"","\"device data\"","\"device management\"","\"Internet of Things\"","\"IoT connectivity\"","\"remote monitoring\"","\"smart devices\"]","[\"IoT Hub\""],"inLanguage":"en-US"},{"@type":"WebPage","@id":"http:\/\/localhost:10003\/deploying-iot-hub-and-handling-device-data\/","url":"http:\/\/localhost:10003\/deploying-iot-hub-and-handling-device-data\/","name":"Deploying IoT Hub and handling device data - Pantherax Blogs","isPartOf":{"@id":"http:\/\/localhost:10003\/#website"},"datePublished":"2023-11-04T23:13:57+00:00","dateModified":"2023-11-05T05:48:26+00:00","breadcrumb":{"@id":"http:\/\/localhost:10003\/deploying-iot-hub-and-handling-device-data\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/localhost:10003\/deploying-iot-hub-and-handling-device-data\/"]}]},{"@type":"BreadcrumbList","@id":"http:\/\/localhost:10003\/deploying-iot-hub-and-handling-device-data\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/localhost:10003\/"},{"@type":"ListItem","position":2,"name":"Deploying IoT Hub and handling device data"}]},{"@type":"WebSite","@id":"http:\/\/localhost:10003\/#website","url":"http:\/\/localhost:10003\/","name":"Pantherax Blogs","description":"","publisher":{"@id":"http:\/\/localhost:10003\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/localhost:10003\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/localhost:10003\/#organization","name":"Pantherax Blogs","url":"http:\/\/localhost:10003\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/localhost:10003\/#\/schema\/logo\/image\/","url":"http:\/\/localhost:10003\/wp-content\/uploads\/2023\/11\/cropped-9e7721cb-2d62-4f72-ab7f-7d1d8db89226.jpeg","contentUrl":"http:\/\/localhost:10003\/wp-content\/uploads\/2023\/11\/cropped-9e7721cb-2d62-4f72-ab7f-7d1d8db89226.jpeg","width":1024,"height":1024,"caption":"Pantherax Blogs"},"image":{"@id":"http:\/\/localhost:10003\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"http:\/\/localhost:10003\/#\/schema\/person\/b63d816f4964b163e53cbbcffaa0f3d7","name":"Panther","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/localhost:10003\/#\/schema\/person\/image\/","url":"http:\/\/2.gravatar.com\/avatar\/b8c0eda5a49f8f31ec32d0a0f9d6f838?s=96&d=mm&r=g","contentUrl":"http:\/\/2.gravatar.com\/avatar\/b8c0eda5a49f8f31ec32d0a0f9d6f838?s=96&d=mm&r=g","caption":"Panther"},"sameAs":["http:\/\/localhost:10003"],"url":"http:\/\/localhost:10003\/author\/pepethefrog\/"}]}},"jetpack_sharing_enabled":true,"jetpack_featured_media_url":"","_links":{"self":[{"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/posts\/3957"}],"collection":[{"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/comments?post=3957"}],"version-history":[{"count":1,"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/posts\/3957\/revisions"}],"predecessor-version":[{"id":4593,"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/posts\/3957\/revisions\/4593"}],"wp:attachment":[{"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/media?parent=3957"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/categories?post=3957"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/tags?post=3957"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}