-
Notifications
You must be signed in to change notification settings - Fork 18
1.4 Lab 4
#LAB 4: CONNECTING TO AZURE
This lab connects the Netduino to a MQTT Service running on Azure. When you have successfully completed this lab your data will be displayed on the central Internet of Things dashboard.
You can also run the Internet of Things dashboard app from the PC you are using. It is pinned to the taskbar next to Visual Studio.
Ensure the Netduino is connected to the PC using the USB cable and the Ethernet cable is plugged in to the Netduino. Then follow these steps.
-
Review the code below. On completion of this lab, your code should be the same
-
If the program is still running from Lab 3, then click the stop button first. You will not be able to edit the Program.cs file while the code executes.
-
Follow the notes in the Lab 4 and copy and paste the code in to Program.cs
-
Replace “emul” with something unique such as your initials, use 3 to 5 characters.
-
Ensure the network cable is plugged in to the Netduino and connected to the internet.
-
Press F5 or the click the Start button from the toolbar to deploy the app to the Netduino
-
The RGB LED blinks when a sensor is read (this can take up to 30 seconds to begin)
-
Check the central Internet of Things dashboard; your data should be displayed. Try adjusting the light reading by covering the LDR. You’ll see the change reflected on the IoT Dashboard.
using Coatsy.Netduino.NeoPixel.Jewel; using Glovebox.Adafruit.Mini8x8Matrix; using Glovebox.MicroFramework.Sensors; using Glovebox.Netduino.Actuators; using Glovebox.Netduino.Sensors; using Microsoft.SPOT; using SecretLabs.NETMF.Hardware.NetduinoPlus; using System.Threading; namespace MakerDen { public class Program : MakerBaseIoT { public static void Main() { // main code marker //Replace the "emul" which is the name of the device with a unique 3 to 5 character name //use your initials or something similar. This code will be visible on the IoT Dashboard StartNetworkServices("emul", true); using (SensorTemp temp = new SensorTemp(Pins.GPIO_PIN_D8, 10000, "temp01")) using (SensorLight light = new SensorLight(AnalogChannels.ANALOG_PIN_A0, 1000, "light01")) using (rgb = new RgbLed(Pins.GPIO_PIN_D3, Pins.GPIO_PIN_D5, Pins.GPIO_PIN_D6, "rgb01")) { temp.OnBeforeMeasurement += OnBeforeMeasure; temp.OnAfterMeasurement += OnMeasureCompleted; light.OnBeforeMeasurement += OnBeforeMeasure; light.OnAfterMeasurement += OnMeasureCompleted; Thread.Sleep(Timeout.Infinite); } } } }