How to check the firmware version of an IoT device.

Hinata Katsunori 536 Reputation points
2022-02-25T02:29:57.57+00:00

Hello.

I want to use Azure to manage the firmware version of my IoT device.

I have confirmed that Device Update for IoT can be used to update the firmware of IoT devices.
I have also confirmed that I can see the deployment history of the firmware to the IoT devices.

Is there a screen that displays a list of devices and shows the firmware version of each device?
Do I need to create my own screen that extracts and displays the firmware information from Device Twin?

Thanks in advance.

Azure IoT Central
Azure IoT Central
An Azure hosted internet of things (IoT) application platform.
376 questions
Azure IoT Hub
Azure IoT Hub
An Azure service that enables bidirectional communication between internet of things (IoT) devices and applications.
1,272 questions
0 comments No comments
{count} votes

Accepted answer
  1. António Sérgio Azevedo 7,671 Reputation points Microsoft Employee Moderator
    2022-02-25T17:02:30.217+00:00

    Hello @HinataGrape-6694 ,
    You can use Azure IoT explorer (see how to Install and use Azure IoT explorer).

    The Azure IoT explorer is a graphical tool for interacting with devices connected to your IoT hub. You can use the tool to view the telemetry the devices are sending, work with device properties, and invoke commands. You can access the device twin information on the Device Twin tab.

    177991-image.png

    You can also considering using IoT Hub query language to retrieve information regarding device twins. See IoT Hub query language for device and module twins, jobs, and message routing .

    For example:

    SELECT * FROM devices  
      WHERE properties.reported.firmwareVersion = 2.0  
    

    Remember:

    • Please accept an answer if correct. Original posters help the community find answers faster by identifying the correct answer. Here is how.
    • Want a reminder to come back and check responses? Here is how to subscribe to a notification.

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.