Share via


Tutorial: Device Update for Azure IoT Hub using the Raspberry Pi 3 B+ reference image

Device Update for Azure IoT Hub supports image-based, package-based, and script-based updates.

Image updates provide a higher level of confidence in the end state of the device. It's typically easier to replicate the results of an image update between a preproduction environment and a production environment because it doesn't pose the same challenges as packages and their dependencies. Because of their atomic nature, you can also adopt an A/B failover model easily.

This tutorial walks you through the steps to complete an end-to-end image-based update by using Device Update for IoT Hub on a Raspberry Pi 3 B+ board.

In this tutorial, you'll learn how to:

  • Download an image.
  • Add a tag to your IoT device.
  • Import an update.
  • Create a device group.
  • Deploy an image update.
  • Monitor the update deployment.

Note

Image updates in this tutorial were validated on the Raspberry Pi B3 board.

Prerequisites

If you haven't already done so, create a Device Update account and instance and configure an IoT hub.

Download the image

We provide sample images in Assets on the Device Update GitHub releases page. The .gz file is the base image that you can flash on to a Raspberry Pi 3 B+ board. The swUpdate file is the update you would import through Device Update for IoT Hub.

Flash an SD card with the image

Use your favorite OS flashing tool to install the Device Update base image (adu-base-image) on the SD card that will be used in the Raspberry Pi 3 B+ device.

Use bmaptool to flash the SD card

  1. Install the bmaptool utility, if you haven't done so already.

    sudo apt-get install bmap-tools
    
  2. Locate the path for the SD card in /dev. The path should look something like /dev/sd* or /dev/mmcblk*. You can use the dmesg utility to help locate the correct path.

  3. Unmount all mounted partitions before flashing.

    sudo umount /dev/<device>
    
  4. Make sure you have write permissions to the device.

    sudo chmod a+rw /dev/<device>
    
  5. Optional: For faster flashing, download the bimap file and the image file and put them in the same directory.

  6. Flash the SD card.

    sudo bmaptool copy <path to image> /dev/<device>
    

Device Update for Azure IoT Hub software is subject to the following license terms:

Read the license terms prior to using the agent. Your installation and use constitutes your acceptance of these terms. If you don't agree with the license terms, don't use the Device Update for IoT Hub agent.

Create a device or module in IoT Hub and get a connection string

Now, add the device to IoT Hub. From within IoT Hub, a connection string is generated for the device.

  1. From the Azure portal, start IoT Hub.

  2. Create a new device.

  3. On the left pane, select Devices. Then select New.

  4. Under Device ID, enter a name for the device. Ensure that the Autogenerate keys checkbox is selected.

  5. Select Save. On the Devices page, the device you created should be in the list.

  6. Get the device connection string by using one of two options:

    • Option 1: Use the Device Update agent with a module identity: On the same Devices page, select Add Module Identity at the top. Create a new Device Update module with the name IoTHubDeviceUpdate. Choose other options as they apply to your use case and then select Save. Select the newly created module. In the module view, select the Copy icon next to Primary Connection String.
    • Option 2: Use the Device Update agent with the device identity: In the device view, select the Copy icon next to Primary Connection String.
  7. Paste the copied characters somewhere for later use in the following steps:

    This copied string is your device connection string.

Prepare on-device configurations for Device Update for IoT Hub

Two configuration files must be on the device so that Device Update for IoT Hub configures properly. The first file is the du-config.json file, which must exist at /adu/du-config.json. The second file is the du-diagnostics-config.json file, which must exist at /adu/du-diagnostics-config.json.

Here are two examples for the du-config.json and the du-diagnostics-config.json files:

Example du-config.json

   {
      "schemaVersion": "1.0",
      "aduShellTrustedUsers": [
         "adu",
         "do"
      ],
      "manufacturer": "fabrikam",
      "model": "vacuum",
      "agents": [
         {
         "name": "main",
         "runas": "adu",
         "connectionSource": {
            "connectionType": "string",
            "connectionData": "HostName=example-connection-string.azure-devices.net;DeviceId=example-device;SharedAccessKey=M5oK/rOP12aB5678YMWv5vFWHFGJFwE8YU6u0uTnrmU="
         },
         "manufacturer": "fabrikam",
         "model": "vacuum"
         }
      ]
   }  

Example du-diagnostics-config.json

   {
      "logComponents":[
         {
               "componentName":"adu",
               "logPath":"/adu/logs/"
         },
         {
               "componentName":"do",
               "logPath":"/var/log/deliveryoptimization-agent/"
         }
      ],
      "maxKilobytesToUploadPerLogPath":50
   }

Configure the Device Update agent on Raspberry Pi

  1. Make sure that Raspberry Pi 3 is connected to the network.

  2. Follow these instructions to add the configuration details:

    1. First, SSH in to the machine by using the following command in the PowerShell window:

         ssh raspberrypi3 -l root
      
    2. Create or open the du-config.json file for editing by using:

         nano /adu/du-config.json
      
    3. After you run the command, you should see an open editor with the file. If you've never created the file, it will be empty. Now copy the preceding example du-config.json contents, and substitute the configurations required for your device. Then replace the example connection string with the one for the device you created in the preceding steps.

    4. After you finish your changes, select Ctrl+X to exit the editor. Then enter y to save the changes.

    5. Now you need to create the du-diagnostics-config.json file by using similar commands. Start by creating or opening the du-diagnostics-config.json file for editing by using:

         nano /adu/du-diagnostics-config.json
      
    6. Copy the preceding example du-diagnostics-config.json contents, and substitute any configurations that differ from the default build. The example du-diagnostics-config.json file represents the default log locations for Device Update for IoT Hub. You only need to change these if your implementation differs.

    7. After you finish your changes, select Ctrl+X to exit the editor. Then enter y to save the changes.

    8. Use the following command to show the files located in the /adu/ directory. You should see both of your configuration files.du-diagnostics-config.json files for editing by using:

         ls -la /adu/
      
  3. Restart the Device Update system daemon to make sure that the configurations were applied. Use the following command within the terminal logged in to the raspberrypi:

       systemctl start adu-agent
    
  4. Check that the agent is live by using the following command:

       systemctl status adu-agent
    

    You should see the status come back as alive and green.

Connect the device in Device Update for IoT Hub

  1. On the left pane, select Devices.

  2. Select the link with your device name.

  3. At the top of the page, select Device Twin if you're connecting directly to Device Update by using the IoT device identity. Otherwise, select the module you created and select its module twin.

  4. Under the reported section of the Device Twin properties, look for the Linux kernel version. For a new device, which hasn't received an update from Device Update, the DeviceManagement:DeviceInformation:1.swVersion value represents the firmware version running on the device. After an update has been applied to a device, Device Update uses the AzureDeviceUpdateCore:ClientMetadata:4.installedUpdateId property value to represent the firmware version running on the device.

  5. The base and update image files have a version number in the file name.

    adu-<image type>-image-<machine>-<version number>.<extension>
    

Use that version number in the later "Import the update" section.

Add a tag to your device

  1. Sign in to the Azure portal and go to the IoT hub.

  2. On the left pane, under Devices, find your IoT device and go to the device twin or module twin.

  3. In the module twin of the Device Update agent module, delete any existing Device Update tag values by setting them to null. If you're using the device identity with the Device Update agent, make these changes on the device twin.

  4. Add a new Device Update tag value, as shown:

        "tags": {
                "ADUGroup": "<CustomTagValue>"
                }
    

Import the update

  1. Download the sample tutorial manifest (Tutorial Import Manifest_Pi.json) and sample update (adu-update-image-raspberrypi3-0.6.5073.1.swu) from Release Assets for the latest agent.

  2. Sign in to the Azure portal and go to your IoT hub with Device Update. On the left pane, under Automatic Device Management, select Updates.

  3. Select the Updates tab.

  4. Select + Import New Update.

  5. Select + Select from storage container. Select an existing account or create a new account by using + Storage account. Then select an existing container or create a new container by using + Container. This container will be used to stage your update files for importing.

    Note

    We recommend that you use a new container each time you import an update to avoid accidentally importing files from previous updates. If you don't use a new container, be sure to delete any files from the existing container before you finish this step.

    Screenshot that shows Storage accounts and Containers.

  6. In your container, select Upload and go to the files you downloaded in step 1. After you've selected all your update files, select Upload. Then select the Select button to return to the Import update page.

    Screenshot that shows selecting uploaded files.

    This screenshot shows the import step. File names might not match the ones used in the example.

  7. On the Import update page, review the files to be imported. Then select Import update to start the import process.

    Screenshot that shows Import update.

  8. The import process begins, and the screen switches to the Import history section. When the Status column indicates the import has succeeded, select the Available updates header. You should see your imported update in the list now.

    Screenshot that shows job status.

Learn more about how to import updates.

Create an update group

  1. Go to the Groups and Deployments tab at the top of the page.

    Screenshot that shows ungrouped devices.

  2. Select Add group to create a new group.

    Screenshot that shows device group addition.

  3. Select an IoT Hub tag and Device class from the list. Then select Create group.

    Screenshot that shows tag selection.

  4. After the group is created, the update compliance chart and groups list are updated. The update compliance chart shows the count of devices in various states of compliance: On latest update, New updates available, and Updates in progress. Learn about update compliance.

    Screenshot that shows the update compliance view.

  5. You should see your newly created group and any available updates for the devices in the new group. If there are devices that don't meet the device class requirements of the group, they show up in a corresponding invalid group. To deploy the best available update to the new user-defined group from this view, select Deploy next to the group.

Learn more about how to add tags and create update groups.

Deploy the update

  1. After the group is created, you should see a new update available for your device group. A link to the update should be under Best update. You might need to refresh once. Learn more about update compliance.

  2. Select the target group by selecting the group name. You're directed to the group details under Group basics.

    Screenshot that shows Group details.

  3. To start the deployment, go to the Current deployment tab. Select the deploy link next to the desired update from the Available updates section. The best available update for a given group is denoted with a Best highlight.

    Screenshot that shows selecting an update.

  4. Schedule your deployment to start immediately or in the future. Then select Create.

    Screenshot that shows the Create button.

  5. Under Deployment details, Status turns to Active. The deployed update is marked with (deploying).

    Screenshot that shows Deployment active.

  6. View the compliance chart to see that the update is now in progress.

  7. After your device is successfully updated, you see that your compliance chart and deployment details updated to reflect the same.

    Screenshot that shows Update succeeded.

Monitor the update deployment

  1. Select the Deployment history tab at the top of the page.

    Screenshot that shows Deployment history.

  2. Select Details next to the deployment you created.

    Screenshot that shows Deployment details.

  3. Select Refresh to view the latest status details.

You've now completed a successful end-to-end image update by using Device Update for IoT Hub on a Raspberry Pi 3 B+ device.

Clean up resources

When no longer needed, clean up your Device Update account, instance, IoT hub, and IoT device.

Next steps