Control a device connected to an IoT hub (Android)
In this quickstart, you use a direct method to control a simulated device connected to Azure IoT Hub. IoT Hub is an Azure service that enables you to manage your IoT devices from the cloud and ingest high volumes of device telemetry to the cloud for storage or processing. You can use direct methods to remotely change the behavior of a device connected to your IoT hub. This quickstart uses two applications: a simulated device application that responds to direct methods called from a back-end service application and a service application that calls the direct method on the Android device.
Prerequisites
An Azure account with an active subscription. Create one for free.
Port 8883 open in your firewall. The device sample in this quickstart uses MQTT protocol, which communicates over port 8883. This port may be blocked in some corporate and educational network environments. For more information and ways to work around this issue, see Connecting to IoT Hub (MQTT).
Use the Bash environment in Azure Cloud Shell.
If you prefer, install the Azure CLI to run CLI reference commands.
If you’re using a local installation, sign in to the Azure CLI by using the az login command. To finish the authentication process, follow the steps displayed in your terminal. For additional sign-in options, see Sign in with the Azure CLI.
When you’re prompted, install Azure CLI extensions on first use. For more information about extensions, see Use extensions with the Azure CLI.
Run az version to find the version and dependent libraries that are installed. To upgrade to the latest version, run az upgrade.
This article uses the newest version of the Azure IoT extension, called azure-iot . The legacy version is called azure-cli-iot-ext .You should only have one version installed at a time. You can use the command az extension list to validate the currently installed extensions.
Use az extension remove —name azure-cli-iot-ext to remove the legacy version of the extension.
Use az extension add —name azure-iot to add the new version of the extension.
To see what extensions you have installed, use az extension list .
Create an IoT hub
If you completed the previous Quickstart: Send telemetry from a device to an IoT hub, you can skip this step and use the IoT hub you have already created.
This section describes how to create an IoT hub using the Azure portal.
From the Azure homepage, select the + Create a resource button, and then enter IoT Hub in the Search the Marketplace field.
Select IoT Hub from the search results, and then select Create.
On the Basics tab, complete the fields as follows:
Subscription: Select the subscription to use for your hub.
Resource Group: Select a resource group or create a new one. To create a new one, select Create new and fill in the name you want to use. To use an existing resource group, select that resource group. For more information, see Manage Azure Resource Manager resource groups.
Region: Select the region in which you want your hub to be located. Select the location closest to you. Some features, such as IoT Hub device streams, are only available in specific regions. For these limited features, you must select one of the supported regions.
IoT Hub Name: Enter a name for your hub. This name must be globally unique, with a length between 3 and 50 alphanumeric characters. The name can also include the dash ( ‘-‘ ) character.
Because the IoT hub will be publicly discoverable as a DNS endpoint, be sure to avoid entering any sensitive or personally identifiable information when you name it.
Select Next: Networking to continue creating your hub.
Choose the endpoints that devices can use to connect to your IoT Hub. You can select the default setting Public endpoint (all networks), or choose Public endpoint (selected IP ranges), or Private endpoint. Accept the default setting for this example.
Select Next: Management to continue creating your hub.
You can accept the default settings here. If desired, you can modify any of the following fields:
Pricing and scale tier: Your selected tier. You can choose from several tiers, depending on how many features you want and how many messages you send through your solution per day. The free tier is intended for testing and evaluation. It allows 500 devices to be connected to the hub and up to 8,000 messages per day. Each Azure subscription can create one IoT hub in the free tier.
If you are working through a Quickstart for IoT Hub device streams, select the free tier.
IoT Hub units: The number of messages allowed per unit per day depends on your hub’s pricing tier. For example, if you want the hub to support ingress of 700,000 messages, you choose two S1 tier units. For details about the other tier options, see Choosing the right IoT Hub tier.
Defender for IoT: Turn this on to add an extra layer of threat protection to IoT and your devices. This option is not available for hubs in the free tier. For more information about this feature, see Microsoft Defender for IoT.
Advanced Settings > Device-to-cloud partitions: This property relates the device-to-cloud messages to the number of simultaneous readers of the messages. Most hubs need only four partitions.
Select Next: Tags to continue to the next screen.
Tags are name/value pairs. You can assign the same tag to multiple resources and resource groups to categorize resources and consolidate billing. In this document, you won’t be adding any tags. For more information, see Use tags to organize your Azure resources.
Select Next: Review + create to review your choices. You see something similar to this screen, but with the values you selected when creating the hub.
Select Create to start the deployment of your new hub. Your deployment will be in progress a few minutes while the hub is being created. Once the deployment is complete, select Go to resource to open the new hub.
Register a device
If you completed the previous Quickstart: Send telemetry from a device to an IoT hub, you can skip this step and use the same device registered in the previous quickstart.
A device must be registered with your IoT hub before it can connect. In this quickstart, you use the Azure Cloud Shell to register a simulated device.
Run the following command in Azure Cloud Shell to create the device identity.
YourIoTHubName: Replace this placeholder below with the name you chose for your IoT hub.
MyAndroidDevice: This is the name of the device you’re registering. It’s recommended to use MyAndroidDevice as shown. If you choose a different name for your device, you also need to use that name throughout this article, and update the device name in the sample applications before you run them.
Run the following commands in Azure Cloud Shell to get the device connection string for the device you just registered:
YourIoTHubName: Replace this placeholder below with the name you choose for your IoT hub.
Make a note of the device connection string, which looks like:
You use this value later in the quickstart.
Retrieve the service connection string
You also need a service connection string to enable the back-end service applications to connect to your IoT hub in order to execute methods and retrieve messages. The following command retrieves the service connection string for your IoT hub:
YourIoTHubName: Replace this placeholder below with the name you chose for your IoT hub.
Make a note of the service connection string, which looks like:
You use this value later in the quickstart. This service connection string is different from the device connection string you noted in the previous step.
Listen for direct method calls
Both of the samples for this quickstart are part of the azure-iot-samples-java repository on GitHub. Download or clone the azure-iot-samples-java repository.
The device SDK sample application can be run on a physical Android device or an Android emulator. The sample connects to a device-specific endpoint on your IoT hub, sends simulated telemetry, and listens for direct method calls from your hub. In this quickstart, the direct method call from the hub tells the device to change the interval at which it sends telemetry. The simulated device sends an acknowledgment back to your hub after it executes the direct method.
Open the GitHub sample Android project in Android Studio. The project is located in the following directory of your cloned or downloaded copy of azure-iot-sample-java repository: \azure-iot-samples-java\iot-hub\Samples\device\AndroidSample.
In Android Studio, open gradle.properties for the sample project and replace the Device_Connection_String placeholder with the device connection string you made a note of earlier.
In Android Studio, click File > Sync Project with Gradle Files. Verify the build completes.
If the project sync fails, it may be for one of the following reasons:
- The versions of the Android Gradle plugin and Gradle referenced in the project are out of date for your version of Android Studio. Follow these instructions to reference and install the correct versions of the plugin and Gradle for your installation.
- The license agreement for the Android SDK has not been signed. Follow the instructions in the Build output to sign the license agreement and download the SDK.
Once the build has completed, click Run > Run ‘app’. Configure the app to run on a physical Android device or an Android emulator. For more information on running an Android app on a physical device or emulator, see Run your app.
Once the app loads, click the Start button to start sending telemetry to your IoT Hub:
This app needs to be left running on a physical device or emulator while you execute the service SDK sample to update the telemetry interval during run-time.
Read the telemetry from your hub
In this section, you will use the Azure Cloud Shell with the IoT extension to monitor the messages that are sent by the Android device.
Using the Azure Cloud Shell, run the following command to connect and read messages from your IoT hub:
YourIoTHubName: Replace this placeholder below with the name you choose for your IoT hub.
The following screenshot shows the output as the IoT hub receives telemetry sent by the Android device:
By default, the telemetry app sends telemetry from the Android device every five seconds. In the next section, you will use a direct method call to update the telemetry interval for the Android IoT device.
Call the direct method
The service application connects to a service-side endpoint on your IoT Hub. The application makes direct method calls to a device through your IoT hub and listens for acknowledgments.
Run this app on a separate physical Android device or Android emulator.
An IoT Hub back-end service application typically runs in the cloud, where it’s easier to mitigate the risks associated with the sensitive connection string that controls all devices on an IoT Hub. In this example, we are running it as an Android app for demonstration purposes only. The other-language versions of this quickstart provide examples that align more closely with a typical back-end service application.
Open the GitHub service sample Android project in Android Studio. The project is located in the following directory of your cloned or downloaded copy of azure-iot-sample-java repository: \azure-iot-samples-java\iot-hub\Samples\service\AndroidSample.
In Android Studio, open gradle.properties for the sample project. Update the values for the ConnectionString and DeviceId properties with the service connection string you noted earlier and the Android device ID you registered.
In Android Studio, click File > Sync Project with Gradle Files. Verify the build completes.
If the project sync fails, it may be for one of the following reasons:
- The versions of the Android Gradle plugin and Gradle referenced in the project are out of date for your version of Android Studio. Follow these instructions to reference and install the correct versions of the plugin and Gradle for your installation.
- The license agreement for the Android SDK has not been signed. Follow the instructions in the Build output to sign the license agreement and download the SDK.
Once the build has completed, click Run > Run ‘app’. Configure the app to run on a separate physical Android device or an Android emulator. For more information on running an Android app on a physical device or emulator, see Run your app.
Once the app loads, update the Set Messaging Interval value to 1000 and click Invoke.
Th telemetry messaging interval is in milliseconds. The default telemetry interval of the device sample is set for 5 seconds. This change will update the Android IoT device so that telemetry is sent every second.
The app will receive an acknowledgment indicating whether the method executed successfully or not.
Clean up resources
If you will be continuing to the next recommended article, you can keep the resources you’ve already created and reuse them.
Otherwise, you can delete the Azure resources created in this article to avoid charges.
Deleting a resource group is irreversible. The resource group and all the resources contained in it are permanently deleted. Make sure that you do not accidentally delete the wrong resource group or resources. If you created the IoT Hub inside an existing resource group that contains resources you want to keep, only delete the IoT Hub resource itself instead of deleting the resource group.
To delete a resource group by name:
Sign in to the Azure portal and select Resource groups.
In the Filter by name textbox, type the name of the resource group containing your IoT Hub.
To the right of your resource group in the result list, select . then Delete resource group.
You will be asked to confirm the deletion of the resource group. Type the name of your resource group again to confirm, and then select Delete. After a few moments, the resource group and all of its contained resources are deleted.
Next steps
In this quickstart, you called a direct method on a device from a back-end application, and responded to the direct method call in a simulated device application.
To learn how to route device-to-cloud messages to different destinations in the cloud, continue to the next tutorial.
Источник