title | description | author | ms.author | ms.date | ms.topic | ms.service | services | manager |
---|---|---|---|---|---|---|---|---|
Connnect a Raspberry Pi to your Azure IoT Central application (C#) | Microsoft Docs |
As an device developer, how to connect a Raspberry Pi to your Azure IoT Central application using C#. |
viv-liu |
viviali |
10/31/2018 |
conceptual |
iot-central |
iot-central |
peterpr |
[!INCLUDE howto-raspberrypi-selector]
This article describes how, as a device developer, to connect a Raspberry Pi to your Microsoft Azure IoT Central application using the C# programming language.
To complete the steps in this article, you need the following components:
- .NET Core 2 installed on your development machine. You should also have a suitable code editor such as Visual Studio Code.
- An Azure IoT Central application created from the Sample Devkits application template. For more information, see the create an application quickstart.
- A Raspberry Pi device running the Raspbian operating system.
An application created from the Sample Devkits application template includes a Raspberry Pi device template with the following characteristics:
- Telemetry, which includes the following measurements the device will collect:
- Humidity
- Temperature
- Pressure
- Magnetometer (X, Y, Z)
- Accelerometer (X, Y, Z)
- Gyroscope (X, Y, Z)
- Settings
- Voltage
- Current
- Fan Speed
- IR toggle.
- Properties
- Die number device property
- Location cloud property
For full details on the configuration of the device template refer to Raspberry PI Device template details
In your Azure IoT Central application, add a real device from the Raspberry Pi device template and make a note of the device connection string. For more information, see Add a real device to your Azure IoT Central application.
You create and test the device application on your desktop machine.
To complete the following steps, you can use Visual Studio Code. For more information, see Working with C#.
Note
If you prefer, you can complete the following steps using a different code editor.
- To initialize your .NET project and add the required NuGet packages, run the following commands:
mkdir pisample
cd pisample
dotnet new console
dotnet add package Microsoft.Azure.Devices.Client
dotnet restore
-
Open the
pisample
folder in Visual Studio Code. Then open the pisample.csproj project file. Add the<RuntimeIdentifiers>
tag shown in the following snippet:<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <TargetFramework>netcoreapp2.0</TargetFramework> <RuntimeIdentifiers>win-arm;linux-arm</RuntimeIdentifiers> </PropertyGroup> <ItemGroup> <PackageReference Include="Microsoft.Azure.Devices.Client" Version="1.5.2" /> </ItemGroup> </Project>
[!NOTE] Your Microsoft.Azure.Devices.Client package version number may be higher than the one shown.
-
Save pisample.csproj. If Visual Studio Code prompts you to execute the restore command, choose Restore.
-
Open Program.cs and replace the contents with the following code:
using System; using System.Text; using System.Threading; using System.Threading.Tasks; using Microsoft.Azure.Devices.Client; using Microsoft.Azure.Devices.Shared; using Newtonsoft.Json; namespace pisample { class Program { static string DeviceConnectionString = "{your device connection string}"; static DeviceClient Client = null; static TwinCollection reportedProperties = new TwinCollection(); static CancellationTokenSource cts; static double baseTemperature = 60; static double basePressure = 500; static double baseHumidity = 50; static void Main(string[] args) { Console.WriteLine("Raspberry Pi Azure IoT Central example"); try { InitClient(); SendDeviceProperties(); cts = new CancellationTokenSource(); SendTelemetryAsync(cts.Token); Console.WriteLine("Wait for settings update..."); Client.SetDesiredPropertyUpdateCallbackAsync(HandleSettingChanged, null).Wait(); Console.ReadKey(); cts.Cancel(); } catch (Exception ex) { Console.WriteLine(); Console.WriteLine("Error in sample: {0}", ex.Message); } } public static void InitClient() { try { Console.WriteLine("Connecting to hub"); Client = DeviceClient.CreateFromConnectionString(DeviceConnectionString, TransportType.Mqtt); } catch (Exception ex) { Console.WriteLine(); Console.WriteLine("Error in sample: {0}", ex.Message); } } public static async void SendDeviceProperties() { try { Console.WriteLine("Sending device properties:"); Random random = new Random(); TwinCollection telemetryConfig = new TwinCollection(); reportedProperties["dieNumber"] = random.Next(1, 6); Console.WriteLine(JsonConvert.SerializeObject(reportedProperties)); await Client.UpdateReportedPropertiesAsync(reportedProperties); } catch (Exception ex) { Console.WriteLine(); Console.WriteLine("Error in sample: {0}", ex.Message); } } private static async void SendTelemetryAsync(CancellationToken token) { try { Random rand = new Random(); while (true) { double currentTemperature = baseTemperature + rand.NextDouble() * 20; double currentPressure = basePressure + rand.NextDouble() * 100; double currentHumidity = baseHumidity + rand.NextDouble() * 20; var telemetryDataPoint = new { humidity = currentHumidity, pressure = currentPressure, temp = currentTemperature }; var messageString = JsonConvert.SerializeObject(telemetryDataPoint); var message = new Message(Encoding.ASCII.GetBytes(messageString)); token.ThrowIfCancellationRequested(); await Client.SendEventAsync(message); Console.WriteLine("{0} > Sending telemetry: {1}", DateTime.Now, messageString); await Task.Delay(1000); } } catch (Exception ex) { Console.WriteLine(); Console.WriteLine("Intentional shutdown: {0}", ex.Message); } } private static async Task HandleSettingChanged(TwinCollection desiredProperties, object userContext) { try { Console.WriteLine("Received settings change..."); Console.WriteLine(JsonConvert.SerializeObject(desiredProperties)); string setting = "fanSpeed"; if (desiredProperties.Contains(setting)) { // Act on setting change, then AcknowledgeSettingChange(desiredProperties, setting); } setting = "setVoltage"; if (desiredProperties.Contains(setting)) { // Act on setting change, then AcknowledgeSettingChange(desiredProperties, setting); } setting = "setCurrent"; if (desiredProperties.Contains(setting)) { // Act on setting change, then AcknowledgeSettingChange(desiredProperties, setting); } setting = "activateIR"; if (desiredProperties.Contains(setting)) { // Act on setting change, then AcknowledgeSettingChange(desiredProperties, setting); } await Client.UpdateReportedPropertiesAsync(reportedProperties); } catch (Exception ex) { Console.WriteLine(); Console.WriteLine("Error in sample: {0}", ex.Message); } } private static void AcknowledgeSettingChange(TwinCollection desiredProperties, string setting) { reportedProperties[setting] = new { value = desiredProperties[setting]["value"], status = "completed", desiredVersion = desiredProperties["$version"], message = "Processed" }; } } }
[!NOTE] You update the placeholder
{your device connection string}
in the next step.
Add your device-specific connection string to the code for the device to authenticate with Azure IoT Central. You made a note of this connection string when you added your real device to your Azure IoT Central application.
Note
Azure IoT Central has transitioned to using Azure IoT Hub Device Provisioning service (DPS) for all device connections, follow these instrustions to get the device connection string and continue with the rest of the tutorial.
-
Replace
{your device connection string}
in the Program.cs file with the connection string you noted previously. -
Run the following command in your command-line environment:
dotnet restore
dotnet publish -r linux-arm
-
Copy the
pisample\bin\Debug\netcoreapp2.0\linux-arm\publish
folder to your Raspberry Pi device. You can use the scp command to copy the files, for example:scp -r publish [email protected]:publish
For more information, see Raspberry Pi remote access.
-
Sign in to your Raspberry Pi device and run the following commands in a shell:
sudo apt-get update sudo apt-get install libc6 libcurl3 libgcc1 libgssapi-krb5-2 liblttng-ust0 libstdc++6 libunwind8 libuuid1 zlib1g
-
On your Raspberry Pi, run the following commands:
cd publish chmod 777 pisample ./pisample
-
In your Azure IoT Central application, you can see how the code running on the Raspberry Pi interacts with the application:
- On the Measurements page for your real device, you can see the telemetry.
- On the Properties page, you can see the value of the reported Die Number property.
- On the Settings page, you can change various settings on the Raspberry Pi such as voltage and fan speed.
The following screenshot shows the Raspberry Pi receiving the setting change:
An application created from the Sample Devkits application template includes a Raspberry Pi device template with the following characteristics:
Field name | Units | Minimum | Maximum | Decimal places |
---|---|---|---|---|
humidity | % | 0 | 100 | 0 |
temp | °C | -40 | 120 | 0 |
pressure | hPa | 260 | 1260 | 0 |
magnetometerX | mgauss | -1000 | 1000 | 0 |
magnetometerY | mgauss | -1000 | 1000 | 0 |
magnetometerZ | mgauss | -1000 | 1000 | 0 |
accelerometerX | mg | -2000 | 2000 | 0 |
accelerometerY | mg | -2000 | 2000 | 0 |
accelerometerZ | mg | -2000 | 2000 | 0 |
gyroscopeX | mdps | -2000 | 2000 | 0 |
gyroscopeY | mdps | -2000 | 2000 | 0 |
gyroscopeZ | mdps | -2000 | 2000 | 0 |
Numeric settings
Display name | Field name | Units | Decimal places | Minimum | Maximum | Initial |
---|---|---|---|---|---|---|
Voltage | setVoltage | Volts | 0 | 0 | 240 | 0 |
Current | setCurrent | Amps | 0 | 0 | 100 | 0 |
Fan Speed | fanSpeed | RPM | 0 | 0 | 1000 | 0 |
Toggle settings
Display name | Field name | On text | Off text | Initial |
---|---|---|---|---|
IR | activateIR | ON | OFF | Off |
Type | Display name | Field name | Data type |
---|---|---|---|
Device property | Die number | dieNumber | number |
Text | Location | location | N/A |
Now that you have learned how to connect a Raspberry Pi to your Azure IoT Central application, here are the suggested next steps: