platform | device | language |
---|---|---|
opensuse |
desktop |
c |
About this document
This document describes how to connect devices running openSUSE with Azure IoT SDK. This multi-step process includes:
- Configuring Azure IoT Hub
- Registering your IoT device
- Build and deploy Azure IoT SDK on device
You should have the following items ready before beginning the process:
- Computer with Git client installed and access to the azure-iot-sdks GitHub public repository.
- Setup your IoT hub
- Provision your device and get its credentials
- Open a PuTTY session and connect to the device.
## Setup the development environmentNote: You can skip this step if you just want to build the sample application without running it.
This section shows you how to set up a development environment for the Azure IoT device SDK for C on openSUSE.
-
Clone this repository (azure-iot-sdks) to the machine you are using.
-
Open a shell and navigate to the folder c/build_all/linux in your local copy of the repository.
-
Run the
setup_opensuse.sh
script to install the prerequisite packages and the dependent libraries. -
Run the
build.sh
script.
This script builds the iothub_client and serializer libraries and their associated samples in a folder called "cmake" inside you home folder.
## Run the sampleNote: you will not be able to run the samples until you configure them with a valid IoT Hub device connection string. For more information, see Run sample on Linux.
-
Open the file c/serializer/samples/simplesample_amqp/simplesample_amqp.c in a text editor.
-
Locate the following code in the file:
static const char* connectionString = "[device connection string]";
-
Replace "[device connection string]" with the device connection string you noted earlier. Save the changes.
-
Save your changes and build the samples. To build your sample you can run the build.sh script in the c/build_all/linux directory.
-
Run the azure-iot-sdks/c/cmake/iotsdk_linux/serializer/samples/simplesample_amqp/simplesample_amqp sample application.
-
See Manage IoT Hub to learn how to observe the messages IoT Hub receives from the simplesample_amqp application and how to send cloud-to-device messages to the simplesample_amqp application.