Skip to content
This repository has been archived by the owner on Oct 12, 2023. It is now read-only.

Latest commit

 

History

History
572 lines (433 loc) · 21 KB

iot-hub-iot-edge-physical-device.md

File metadata and controls

572 lines (433 loc) · 21 KB
title description services documentationcenter author manager editor ms.assetid ms.service ms.devlang ms.topic ms.tgt_pltfrm ms.workload ms.date ms.author
Use a physical device with Azure IoT Edge | Microsoft Docs
How to use a Texas Instruments SensorTag device to send data to an IoT hub through a IoT Edge gateway running on a Raspberry Pi 3 device. The gateway is built using Azure IoT Edge.
iot-hub
chipalost
timlt
212dacbf-e5e9-48b2-9c8a-1c14d9e7b913
iot-hub
cpp
article
na
na
09/28/2017
andbuc

Forward device-to-cloud messages to IoT Hub using Azure IoT Edge on a Raspberry Pi

This walkthrough of the Bluetooth low energy sample shows you how to use Azure IoT Edge to:

  • Forward device-to-cloud telemetry to IoT Hub from a physical device.
  • Route commands from IoT Hub to a physical device.

This walkthrough covers:

  • Architecture: important architectural information about the Bluetooth low energy sample.
  • Build and run: the steps required to build and run the sample.

Architecture

The walkthrough shows you how to build and run an IoT Edge gateway on a Raspberry Pi 3 that runs Raspbian Linux. The gateway is built using IoT Edge. The sample uses a Texas Instruments SensorTag Bluetooth Low Energy (BLE) device to collect temperature data.

When you run the IoT Edge gateway it:

  • Connects to a SensorTag device using the Bluetooth Low Energy (BLE) protocol.
  • Connects to IoT Hub using the HTTPS protocol.
  • Forwards telemetry from the SensorTag device to IoT Hub.
  • Routes commands from IoT Hub to the SensorTag device.

The gateway contains the following IoT Edge modules:

  • A BLE module that interfaces with a BLE device to receive temperature data from the device and send commands to the device.
  • A BLE cloud to device module that translates JSON messages sent from IoT Hub into BLE instructions for the BLE module.
  • A logger module that logs all gateway messages to a local file.
  • An identity mapping module that translates between BLE device MAC addresses and Azure IoT Hub device identities.
  • An IoT Hub module that uploads telemetry data to an IoT hub and receives device commands from an IoT hub.
  • A BLE printer module that interprets telemetry from the BLE device and prints formatted data to the console to enable troubleshooting and debugging.

How data flows through the gateway

The following block diagram illustrates the telemetry upload data flow pipeline:

Telemetry upload gateway pipeline

The steps that an item of telemetry takes traveling from a BLE device to IoT Hub are:

  1. The BLE device generates a temperature sample and sends it over Bluetooth to the BLE module in the gateway.
  2. The BLE module receives the sample and publishes it to the broker along with the MAC address of the device.
  3. The identity mapping module picks up this message and uses an internal table to translate the MAC address of the device into an IoT Hub device identity. An IoT Hub device identity consists of a device ID and device key.
  4. The identity mapping module publishes a new message that contains the following information:
    • Temperature sample data
    • The MAC address of the device
    • The device ID
    • The device key
  5. The IoT Hub module receives this new message (generated by the identity mapping module) and publishes it to IoT Hub.
  6. The logger module logs all messages from the broker to a local file.

The following block diagram illustrates the device command data flow pipeline:

Device command gateway pipeline

  1. The IoT Hub module periodically polls the IoT hub for new command messages.
  2. When the IoT Hub module receives a new command message, it publishes it to the broker.
  3. The identity mapping module picks up the command message and uses an internal table to translate the IoT Hub device ID to a device MAC address. It then publishes a new message that includes the MAC address of the target device in the properties map of the message.
  4. The BLE Cloud-to-Device module picks up this message and translates it into the proper BLE instruction for the BLE module. It then publishes a new message.
  5. The BLE module picks up this message and executes the I/O instruction by communicating with the BLE device.
  6. The logger module logs all messages from the broker to a disk file.

Prerequisites

To complete this tutorial, you need an active Azure subscription.

Note

If you don't have an account, you can create a free trial account in just a couple of minutes. For details, see Azure Free Trial.

You need SSH client on your desktop machine to enable you to remotely access the command line on the Raspberry Pi.

  • Windows does not include an SSH client. We recommend using PuTTY.
  • Most Linux distributions and Mac OS include the command-line SSH utility. For more information, see SSH Using Linux or Mac OS.

Prepare your hardware

This tutorial assumes you are using a Texas Instruments SensorTag device connected to a Raspberry Pi 3 running Raspbian.

Install Raspbian

You can use either of the following options to install Raspbian on your Raspberry Pi 3 device.

  • To install the latest version of Raspbian, use the NOOBS graphical user interface.
  • Manually download and write the latest image of the Raspbian operating system to an SD card.

Sign in and access the terminal

You have two options to access a terminal environment on your Raspberry Pi:

  • If you have a keyboard and monitor connected to your Raspberry Pi, you can use the Raspbian GUI to access a terminal window.

  • Access the command line on your Raspberry Pi using SSH from your desktop machine.

Use a terminal Window in the GUI

The default credentials for Raspbian are username pi and password raspberry. In the task bar in the GUI, you can launch the Terminal utility using the icon that looks like a monitor.

Sign in with SSH

You can use SSH for command-line access to your Raspberry Pi. The article SSH (Secure Shell) describes how to configure SSH on your Raspberry Pi, and how to connect from Windows or Linux & Mac OS.

Sign in with username pi and password raspberry.

Install BlueZ 5.37

The BLE modules talk to the Bluetooth hardware via the BlueZ stack. You need version 5.37 of BlueZ for the modules to work correctly. These instructions make sure the correct version of BlueZ is installed.

  1. Stop the current bluetooth daemon:

    sudo systemctl stop bluetooth
  2. Install the BlueZ dependencies:

    sudo apt-get update
    sudo apt-get install bluetooth bluez-tools build-essential autoconf libtool glib2.0 libglib2.0-dev libdbus-1-dev libudev-dev libical-dev libreadline-dev
  3. Download the BlueZ source code from bluez.org:

    wget http://www.kernel.org/pub/linux/bluetooth/bluez-5.37.tar.xz
  4. Unzip the source code:

    tar -xvf bluez-5.37.tar.xz
  5. Change directories to the newly created folder:

    cd bluez-5.37
  6. Configure the BlueZ code to be built:

    ./configure --disable-udev --disable-systemd --enable-experimental
  7. Build BlueZ:

    make
  8. Install BlueZ once it is done building:

    sudo make install
  9. Change systemd service configuration for bluetooth so it points to the new bluetooth daemon in the file /lib/systemd/system/bluetooth.service. Replace the 'ExecStart' line with the following text:

    ExecStart=/usr/local/libexec/bluetooth/bluetoothd -E
    

Enable connectivity to the SensorTag device from your Raspberry Pi 3 device

Before running the sample, you need to verify that your Raspberry Pi 3 can connect to the SensorTag device.

  1. Ensure the rfkill utility is installed:

    sudo apt-get install rfkill
  2. Unblock bluetooth on the Raspberry Pi 3 and check that the version number is 5.37:

    sudo rfkill unblock bluetooth
    bluetoothctl --version
  3. To enter the interactive bluetooth shell, start the bluetooth service and execute the bluetoothctl command:

    sudo systemctl start bluetooth
    bluetoothctl
  4. Enter the command power on to power up the bluetooth controller. The command returns output similar to the following example:

    [NEW] Controller 98:4F:EE:04:1F:DF C3 raspberrypi [default]
  5. In the interactive bluetooth shell, enter the command scan on to scan for bluetooth devices. The command returns output similar to the following example:

    Discovery started
    [CHG] Controller 98:4F:EE:04:1F:DF Discovering: yes
  6. Make the SensorTag device discoverable by pressing the small button (the green LED should flash). The Raspberry Pi 3 should discover the SensorTag device:

    [NEW] Device A0:E6:F8:B5:F6:00 CC2650 SensorTag
    [CHG] Device A0:E6:F8:B5:F6:00 TxPower: 0
    [CHG] Device A0:E6:F8:B5:F6:00 RSSI: -43

    In this example, you can see that the MAC address of the SensorTag device is A0:E6:F8:B5:F6:00.

  7. Turn off scanning by entering the scan off command:

    [CHG] Controller 98:4F:EE:04:1F:DF Discovering: no
    Discovery stopped
  8. Connect to your SensorTag device using its MAC address by entering connect <MAC address>. The following sample output is abbreviated for clarity:

    Attempting to connect to A0:E6:F8:B5:F6:00
    [CHG] Device A0:E6:F8:B5:F6:00 Connected: yes
    Connection successful
    [CHG] Device A0:E6:F8:B5:F6:00 UUIDs: 00001800-0000-1000-8000-00805f9b34fb
    ...
    [NEW] Primary Service
            /org/bluez/hci0/dev_A0_E6_F8_B5_F6_00/service000c
            Device Information
    ...
    [CHG] Device A0:E6:F8:B5:F6:00 GattServices: /org/bluez/hci0/dev_A0_E6_F8_B5_F6_00/service000c
    ...
    [CHG] Device A0:E6:F8:B5:F6:00 Name: SensorTag 2.0
    [CHG] Device A0:E6:F8:B5:F6:00 Alias: SensorTag 2.0
    [CHG] Device A0:E6:F8:B5:F6:00 Modalias: bluetooth:v000Dp0000d0110

    You can list the GATT characteristics of the device again using the list-attributes command.

  9. You can now disconnect from the device using the disconnect command and then exit from the bluetooth shell using the quit command:

    Attempting to disconnect from A0:E6:F8:B5:F6:00
    Successful disconnected
    [CHG] Device A0:E6:F8:B5:F6:00 Connected: no

You're now ready to run the BLE IoT Edge sample on your Raspberry Pi 3.

Run the IoT Edge BLE sample

To run the IoT Edge BLE sample, you need to complete three tasks:

  • Configure two sample devices in your IoT Hub.
  • Build IoT Edge on your Raspberry Pi 3 device.
  • Configure and run the BLE sample on your Raspberry Pi 3 device.

At the time of writing, IoT Edge only supports BLE modules in gateways running on Linux.

Configure two sample devices in your IoT Hub

  • Create an IoT hub in your Azure subscription, you need the name of your hub to complete this walkthrough. If you don't have an account, you can create a free account in just a couple of minutes.
  • Add one device called SensorTag_01 to your IoT hub and make a note of its Id and device key. You can use the device explorer or iothub-explorer tools to add this device to the IoT hub you created in the previous step and to retrieve its key. You map this device to the SensorTag device when you configure the gateway.

Build Azure IoT Edge on your Raspberry Pi 3

Install dependencies for Azure IoT Edge:

sudo apt-get install cmake uuid-dev curl libcurl4-openssl-dev libssl-dev libtool

Use the following commands to clone IoT Edge and all its submodules to your home directory:

cd ~
git clone https://github.com/Azure/iot-edge.git

When you have a complete copy of the IoT Edge repository on your Raspberry Pi 3, you can build it using the following command from the folder that contains the SDK:

cd ~/iot-edge
./tools/build.sh  --disable-native-remote-modules

Configure and run the BLE sample on your Raspberry Pi 3

To bootstrap and run the sample, configure each IoT Edge module that participates in the gateway. This configuration is provided in a JSON file and you must configure all five participating IoT Edge modules. There is a sample JSON file in the repository called gateway_sample.json that you can use as the starting point for building your own configuration file. This file is in the samples/ble_gateway/src folder in local copy of the IoT Edge repository.

The following sections describe how to edit this configuration file for the BLE sample. We assume that the IoT Edge repository is in the /home/pi/iot-edge/ folder on your Raspberry Pi 3. If the repository is elsewhere, adjust the paths accordingly.

Logger configuration

Assuming the gateway repository is located in the /home/pi/iot-edge/ folder, configure the logger module as follows:

{
  "name": "Logger",
  "loader": {
    "name" : "native",
    "entrypoint" : {
      "module.path" : "build/modules/logger/liblogger.so"
    }
  },
  "args":
  {
    "filename": "<</path/to/log-file.log>>"
  }
}

BLE module configuration

The sample configuration for the BLE device assumes a Texas Instruments SensorTag device. Any standard BLE device that can operate as a GATT peripheral should work but you may need to update the GATT characteristic IDs and data. Add the MAC address of your SensorTag device:

{
  "name": "SensorTag",
  "loader": {
    "name" : "native",
    "entrypoint" : {
      "module.path": "build/modules/ble/libble.so"
    }
  },
  "args": {
    "controller_index": 0,
    "device_mac_address": "<<AA:BB:CC:DD:EE:FF>>",
    "instructions": [
      {
        "type": "read_once",
        "characteristic_uuid": "00002A24-0000-1000-8000-00805F9B34FB"
      },
      {
        "type": "read_once",
        "characteristic_uuid": "00002A25-0000-1000-8000-00805F9B34FB"
      },
      {
        "type": "read_once",
        "characteristic_uuid": "00002A26-0000-1000-8000-00805F9B34FB"
      },
      {
        "type": "read_once",
        "characteristic_uuid": "00002A27-0000-1000-8000-00805F9B34FB"
      },
      {
        "type": "read_once",
        "characteristic_uuid": "00002A28-0000-1000-8000-00805F9B34FB"
      },
      {
        "type": "read_once",
        "characteristic_uuid": "00002A29-0000-1000-8000-00805F9B34FB"
      },
      {
        "type": "write_at_init",
        "characteristic_uuid": "F000AA02-0451-4000-B000-000000000000",
        "data": "AQ=="
      },
      {
        "type": "read_periodic",
        "characteristic_uuid": "F000AA01-0451-4000-B000-000000000000",
        "interval_in_ms": 1000
      },
      {
        "type": "write_at_exit",
        "characteristic_uuid": "F000AA02-0451-4000-B000-000000000000",
        "data": "AA=="
      }
    ]
  }
}

If you are not using a SensorTag device, review the documentation for your BLE device to determine whether you need to update the GATT characteristic IDs and data values.

IoT Hub module

Add the name of your IoT Hub. The suffix value is typically azure-devices.net:

{
  "name": "IoTHub",
  "loader": {
    "name" : "native",
    "entrypoint" : {
      "module.path": "build/modules/iothub/libiothub.so"
    }
  },
  "args": {
    "IoTHubName": "<<Azure IoT Hub Name>>",
    "IoTHubSuffix": "<<Azure IoT Hub Suffix>>",
    "Transport" : "amqp"
  }
}

Identity mapping module configuration

Add the MAC address of your SensorTag device and the device ID and key of the SensorTag_01 device you added to your IoT Hub:

{
  "name": "mapping",
  "loader": {
    "name" : "native",
    "entrypoint" : {
      "module.path": "build/modules/identitymap/libidentity_map.so"
    }
  },
  "args": [
    {
      "macAddress": "<<AA:BB:CC:DD:EE:FF>>",
      "deviceId": "<<Azure IoT Hub Device ID>>",
      "deviceKey": "<<Azure IoT Hub Device Key>>"
    }
  ]
}

BLE Printer module configuration

{
  "name": "BLE Printer",
  "loader": {
    "name" : "native",
    "entrypoint" : {
      "module.path": "build/samples/ble_gateway/ble_printer/libble_printer.so"
    }
  },
  "args": null
}

BLEC2D Module Configuration

{
  "name": "BLEC2D",
  "loader": {
    "name" : "native",
    "entrypoint" : {
      "module.path": "build/modules/ble/libble_c2d.so"
    }
  },
  "args": null
}

Routing Configuration

The following configuration ensures the following routing between IoT Edge modules:

  • The Logger module receives and logs all messages.
  • The SensorTag module sends messages to both the mapping and BLE Printer modules.
  • The mapping module sends messages to the IoTHub module to be sent up to your IoT Hub.
  • The IoTHub module sends messages back to the mapping module.
  • The mapping module sends messages to the BLEC2D module.
  • The BLEC2D module sends messages back to the Sensor Tag module.
"links" : [
    {"source" : "*", "sink" : "Logger" },
    {"source" : "SensorTag", "sink" : "mapping" },
    {"source" : "SensorTag", "sink" : "BLE Printer" },
    {"source" : "mapping", "sink" : "IoTHub" },
    {"source" : "IoTHub", "sink" : "mapping" },
    {"source" : "mapping", "sink" : "BLEC2D" },
    {"source" : "BLEC2D", "sink" : "SensorTag"}
 ]

To run the sample, pass the path to the JSON configuration file as a parameter to the ble_gateway binary. The following command assumes you are using the gateway_sample.json configuration file. Execute this command from the iot-edge folder on the Raspberry Pi:

./build/samples/ble_gateway/ble_gateway ./samples/ble_gateway/src/gateway_sample.json

You may need to press the small button on the SensorTag device to make it discoverable before you run the sample.

When you run the sample, you can use the device explorer or the iothub-explorer tool to monitor the messages the IoT Edge gateway forwards from the SensorTag device. For example, using iothub-explorer you can monitor device-to-cloud messages using the following command:

iothub-explorer monitor-events --login "HostName={Your iot hub name}.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey={Your IoT Hub key}"

Send cloud-to-device messages

The BLE module also supports sending commands from IoT Hub to the device. You can use the device explorer or the iothub-explorer tool to send JSON messages that the BLE gateway module forwards on to the BLE device.

If you are using the Texas Instruments SensorTag device, you can turn on the red LED, green LED, or buzzer by sending commands from IoT Hub. Before you send commands from IoT Hub, first send the following two JSON messages in order. Then you can send any of the commands to turn on the lights or buzzer.

  1. Reset all LEDs and the buzzer (turn them off):

    {
      "type": "write_once",
      "characteristic_uuid": "F000AA65-0451-4000-B000-000000000000",
      "data": "AA=="
    }
  2. Configure I/O as 'remote':

    {
      "type": "write_once",
      "characteristic_uuid": "F000AA66-0451-4000-B000-000000000000",
      "data": "AQ=="
    }

Now you can send any of the following commands to turn on the lights or buzzer on the SensorTag device:

  • Turn on the red LED:

    {
      "type": "write_once",
      "characteristic_uuid": "F000AA65-0451-4000-B000-000000000000",
      "data": "AQ=="
    }
  • Turn on the green LED:

    {
      "type": "write_once",
      "characteristic_uuid": "F000AA65-0451-4000-B000-000000000000",
      "data": "Ag=="
    }
  • Turn on the buzzer:

    {
      "type": "write_once",
      "characteristic_uuid": "F000AA65-0451-4000-B000-000000000000",
      "data": "BA=="
    }