Demo - temperature and humidity
In logistics/supply chain, a cold chain monitoring solution helps track the perishable products, eatables and food items are required to be delivered with some set temperature. The cold chain monitoring solution assures these will be delivered. This solution can have multiple analytics features build into it. With this solutions use of real-time analytics in combination of predictive analytics it will benefit the business.
Some of the benefits are:
- Increased productivity and supply chain efficiency
- Reduced operational costs
- Improved inventory accuracy
Getting ready
In this recipe, we will be using a DHT temperature and humidity sensor.
This sensor has 4 pins: VCC, Signal, unused, ground. The connection goes as follows:
- 3.3v (P1) -> VCC (V)
- GND (P6) -> GND (G)
- GPIO4 (P7) -> DATA (S)
How to do it...
In this recipe, we will use the temperature sensor to send data to the IoT Hub using Raspberry Pi:
- Create a C# blank Universal Windows Platform (UWP) app from Visual...