Click here to Skip to main content
15,867,308 members
Articles / Internet of Things
Article

Setting up the Intel® Edison Board with the Microsoft Azure IoT Suite

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
8 Oct 2015CPOL4 min read 10.1K  
Setting up the Intel® Edison Board with the Microsoft Azure IoT Suite

This article is for our sponsors at CodeProject. These articles are intended to provide you with information on products and services that we consider useful and of value to developers

Get access to the new Intel® IoT Developer Kit, a complete hardware and software solution that allows developers to create exciting new solutions with the Intel® Galileo and Intel® Edison boards. Visit the Intel® Developer Zone for IoT.

Before you begin connecting your Intel® Edison board to Azure, you will need to ensure the latest OS image has been installed. To do that, follow the getting started instructions on Intel’s official documentation portal. After following the standard Intel® Edison setup instructions, you will need to establish a serial connection to your device from your machine. Once you have established a serial connection (command line) to your Intel® Edison board, you can proceed to install Azure IoT SDK using the below instructions.

Before you begin…

  • Make sure you have run the configure_edison --setup command to set up your board
  • Make sure your Intel® Edison board is online via your local Wi-Fi network (should occur during configure_edison setup)

Installing Git on your Intel® Edison

Git is a widely used distributed version control tool, we will need to install Git on the board in order to clone the Azure IoT SDK and build it locally. To do that, we must first add extended packages which include Git. Intel® Edison’s build of Yocto Project Linux uses the opkg manager which doesn’t, by default, include Git support.

  1. First, on your Intel® Edison board command line, use vi to add the following to your base-feeds:
    $ vi /etc/opkg/base-feeds.conf
  2. Add the following lines to the base-feeds.conf file:
    src/gz all <a href="http://repo.opkg.net/edison/repo/all" rel="nofollow">http://repo.opkg.net/edison/repo/all</a>
    
    src/gz edison <a href="http://repo.opkg.net/edison/repo/edison" rel="nofollow">http://repo.opkg.net/edison/repo/edison</a>
    
    src/gz core2-32 <a href="http://repo.opkg.net/edison/repo/core2-32" rel="nofollow">http://repo.opkg.net/edison/repo/core2-32</a>
  3. Exit by hitting esc, type SHIFT+: and then type wq, and press Enter. If you are unfamiliar with vi editing, read this.
  4. Next, update and upgrade your opkg base-feeds on your command line:
    $ opkg update
  5. You should see the following:

    Image 1

Downloading the Azure IoT SDK to your Intel® Edison board

  1. On your Intel® Edison board, use Git and clone the Azure SDK repository directly using the following commands. We recommend using the default folder located in /home/root:
    $ opkg install git
    $ git clone <a href="mailto:git@github.com" rel="nofollow">git@github.com</a>:Azure/azure-iot-suite-sdks.git
  2. You may be prompted to add an RSA key to your device, respond with yes.

Alternate Deploy Method

  1. If for any reason you are unable to clone the Azure IoT SDK directly to your board, you can clone the repository to your PC / Mac / Linux desktop and then transfer the files over the network to your Intel® Edison board using FileZilla or SCP.
  2. For FileZilla, run wpa_cli status on your Intel® Edison to find your IP address, then use "sftp://your.ip.address", use password "root" and your Intel® Edison password to establish an SFTP connection via FileZilla. Once you have done that, you can drag and drop files over the network directly.

    Image 2

Building the Azure IoT SDK on Intel® Edison

We want to prove to ourselves that we have successfully built the Azure IoT SDK. To do that, we will build a sample application which relies on the SDK. To do that we need to update the credentials in the sample AMPQ app to match those of our Azure IoT Hub application. When we build the Azure IoT SDK, the sample C applications are automatically built by default, we need to include our credentials into the sample app while we build the SDK so that they are ready to function after we build.

  1. Edit "/c/iothub_client/samples/iothub_client_sample_amqp/iothub_client_sample_amqp.c" in the following way using vi or other text editor:
    • Replace the IoT Hub connection aka connectionString string placeholder with your info as below (static const char* ….), when you are finished the result should look like the below connection string with your own credentials instead of the placeholders in brackets.
    • IMPORTANT: Replace items in brackets with your credentials or the sample will not function.

      static const char* connectionString = "HostName=[YOUR-HOST-NAME];CredentialType=SharedAccessKey;CredentialScope=Device;DeviceId=[YOUR-DEVICE-ID];SharedAccessKey=[YOUR-ACCESS-KEY];

  2. In the terminal, enter /c/build_all/linux and execute the following steps:
    $ opkg install util-linux-libuuid-dev
    
    $ ./build_proton.sh
    
    $ ./build.sh

Update the ldconfig cache

While building the Azure IoT SDK, we needed to first build a dependency called Qpid Proton. However, we need to register the resulting library with ldconfig before we can proceed to testing and building our C-language samples. To do that, we need to first locate where the Proton lib is and then copy it into the /lib folder in Yocto.

  1. Add libqpid-proton.so.2 to shared libs by running the following terminal commands:
    $ find -name 'libqpid-proton.so.2'
    Copy the directory you are given by this command to your clipboard.
  2. $ cp [directory_to_libqpid-proton.so.2] /lib
    Replace [directory_to_libqpid-proton.so.2] with the result of the find command from the first step.
  3. $ ldconfig
    This will automatically update the cache; it’s a one-line command.
  4. $ ldconfig -v | grep "libqpid-p*"
    If you completed the operation correctly, you will see "libqpid-proton.so.2" listed.
  5. Now that we have added Qpid Proton to our ldcache, we are able to build the sample C project which relies on Proton:
    • Navigate back to: /c/iothub_client/samples/iothub_client_sample_amqp/iothub_client_sample_amqp/linux
    • Run "make -f makefile.linux"
    • Run "./iothub_client_sample_amqp"
  6. The result should be the following:
    # ./iothub_client_sample_amqp 
    
    hub_client/samples/iothub_client_sample_amqp/linux#
    
    Starting the IoTHub client sample AMQP... 
    
    IoTHubClient_SetNotificationCallback...successful.
    
    IoTHubClient_SendTelemetryAsync accepted data for transmission to IoT Hub.
    
    IoTHubClient_SendTelemetryAsync accepted data for transmission to IoT Hub.
    
    IoTHubClient_SendTelemetryAsync accepted data for transmission to IoT Hub.
    
    IoTHubClient_SendTelemetryAsync accepted data for transmission to IoT Hub.
    
    IoTHubClient_SendTelemetryAsync accepted data for transmission to IoT Hub.
    
    Press any key to exit the application.
    
    Confirmation[0] received for message tracking id = 0 with result =
    
    IOTHUB_CLIENT_CONFIRMATION_OK
    
    Confirmation[1] received for message tracking id = 1 with result =
    
    IOTHUB_CLIENT_CONFIRMATION_OK
    
    Confirmation[2] received for message tracking id = 2 with result =
    
    IOTHUB_CLIENT_CONFIRMATION_OK
    
    Confirmation[3] received for message tracking id = 3 with result =
    
    IOTHUB_CLIENT_CONFIRMATION_OK
    
    Confirmation[4] received for message tracking id = 4 with result =
    
    IOTHUB_CLIENT_CONFIRMATION_OK

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
You may know us for our processors. But we do so much more. Intel invents at the boundaries of technology to make amazing experiences possible for business and society, and for every person on Earth.

Harnessing the capability of the cloud, the ubiquity of the Internet of Things, the latest advances in memory and programmable solutions, and the promise of always-on 5G connectivity, Intel is disrupting industries and solving global challenges. Leading on policy, diversity, inclusion, education and sustainability, we create value for our stockholders, customers and society.
This is a Organisation

42 members

Comments and Discussions

 
-- There are no messages in this forum --