Skip to content

Latest commit

 

History

History
176 lines (101 loc) · 8.22 KB

iot-hub-ios-swift-c2d.md

File metadata and controls

176 lines (101 loc) · 8.22 KB
title description author ms.service services ms.topic ms.date ms.author
Cloud-to-device messages with Azure IoT Hub (iOS) | Microsoft Docs
How to send cloud-to-device messages to a device from an Azure IoT hub using the Azure IoT SDKs for iOS.
kgremban
iot-hub
iot-hub
conceptual
04/19/2018
kgremban

Send cloud-to-device messages with IoT Hub (iOS)

[!INCLUDE iot-hub-selector-c2d]

Azure IoT Hub is a fully managed service that helps enable reliable and secure bi-directional communications between millions of devices and a solution back end. The Send telemetry from a device to an IoT hub article shows how to create an IoT hub, provision a device identity in it, and code a simulated device app that sends device-to-cloud messages.

This article shows you how to:

  • From your solution back end, send cloud-to-device messages to a single device through IoT Hub.

  • Receive cloud-to-device messages on a device.

  • From your solution back end, request delivery acknowledgement (feedback) for messages sent to a device from IoT Hub.

You can find more information on cloud-to-device messages in the messaging section of the IoT Hub developer guide.

At the end of this article, you run two Swift iOS projects:

  • sample-device, the same app created in Send telemetry from a device to an IoT hub, which connects to your IoT hub and receives cloud-to-device messages.

  • sample-service, which sends a cloud-to-device message to the simulated device app through IoT Hub, and then receives its delivery acknowledgement.

Note

IoT Hub has SDK support for many device platforms and languages (including C, Java, and Javascript) through Azure IoT device SDKs. For step-by-step instructions on how to connect your device to this tutorial's code, and generally to Azure IoT Hub, see the Azure IoT Developer Center.

To complete this tutorial, you need the following:

  • An active Azure account. (If you don't have an account, you can create a free account in just a couple of minutes.)

  • An active IoT hub in Azure.

  • The code sample from Azure samples .

  • The latest version of XCode, running the latest version of the iOS SDK. This quickstart was tested with XCode 9.3 and iOS 11.3.

  • The latest version of CocoaPods.

Simulate an IoT device

In this section, you simulate an iOS device running a Swift application to receive cloud-to-device messages from the IoT hub.

This is the sample device that you create in the article Send telemetry from a device to an IoT hub. If you already have that running, you can skip this section.

Install CocoaPods

CocoaPods manage dependencies for iOS projects that use third-party libraries.

In a terminal window, navigate to the Azure-IoT-Samples-iOS folder that you downloaded in the prerequisites. Then, navigate to the sample project:

cd quickstart/sample-device

Make sure that XCode is closed, then run the following command to install the CocoaPods that are declared in the podfile file:

pod install

Along with installing the pods required for your project, the installation command also created an XCode workspace file that is already configured to use the pods for dependencies.

Run the sample device application

  1. Retrieve the connection string for your device. You can copy this string from the Azure portal in the device details blade, or retrieve it with the following CLI command:

    az iot hub device-identity show-connection-string --hub-name {YourIoTHubName} --device-id {YourDeviceID} --output table
    
  2. Open the sample workspace in XCode.

    open "MQTT Client Sample.xcworkspace"
  3. Expand the MQTT Client Sample project and then folder of the same name.

  4. Open ViewController.swift for editing in XCode.

  5. Search for the connectionString variable and update the value with the device connection string that you copied in the first step.

  6. Save your changes.

  7. Run the project in the device emulator with the Build and run button or the key combo command + r.

    Run the project

Simulate a service device

In this section, you simulate a second iOS device with a Swift app that sends cloud-to-device messages through the IoT hub. This configuration is useful for IoT scenarios where there is one iPhone or iPad functioning as a controller for other iOS devices connected to an IoT hub.

Install CocoaPods

CocoaPods manage dependencies for iOS projects that use third-party libraries.

Navigate to the Azure IoT iOS Samples folder that you downloaded in the prerequisites. Then, navigate to the sample service project:

cd quickstart/sample-service

Make sure that XCode is closed, then run the following command to install the CocoaPods that are declared in the podfile file:

pod install

Along with installing the pods required for your project, the installation command also created an XCode workspace file that is already configured to use the pods for dependencies.

Run the sample service application

  1. Retrieve the service connection string for your IoT hub. You can copy this string from the Azure portal from the iothubowner policy in the Shared access policies blade, or retrieve it with the following CLI command:

    az iot hub show-connection-string --hub-name {YourIoTHubName} --output table
    
  2. Open the sample workspace in XCode.

    open AzureIoTServiceSample.xcworkspace
  3. Expand the AzureIoTServiceSample project and then expand the folder of the same name.

  4. Open ViewController.swift for editing in XCode.

  5. Search for the connectionString variable and update the value with the service connection string that you copied previously.

  6. Save your changes.

  7. In Xcode, change the emulator settings to a different iOS device than you used to run the IoT device. XCode cannot run multiple emulators of the same type.

    Change the emulator device

  8. Run the project in the device emulator with the Build and run button or the key combo Command + r.

    Run the project

Send a cloud-to-device message

You are now ready to use the two applications to send and receive cloud-to-device messages.

  1. In the iOS App Sample app running on the simulated IoT device, click Start. The application starts sending device-to-cloud messages, but also starts listening for cloud-to-device messages.

    View sample IoT device app

  2. In the IoTHub Service Client Sample app running on the simulated service device, enter the ID for the IoT device that you want to send a message to.

  3. Write a plaintext message, then click Send.

    Several actions happen as soon as you click send. The service sample sends the message to your IoT hub, which the app has access to because of the service connection string that you provided. Your IoT hub checks the device ID, sends the message to the destination device, and sends a confirmation receipt to the source device. The app running on your simulated IoT device checks for messages from IoT Hub and prints the text from the most recent one on the screen.

    Your output should look like the following example:

    View cloud-to-device messages

Next steps

In this tutorial, you learned how to send and receive cloud-to-device messages.

To see examples of complete end-to-end solutions that use IoT Hub, see the Azure IoT Solution Accelerators documentation.

To learn more about developing solutions with IoT Hub, see the IoT Hub developer guide.