Skip to content

Commit 99d9f14

Browse files
authored
Merge pull request #57798 from ClareMSYanGit/cy_azure_master
Cy azure master
2 parents ab9ce63 + 3cea84d commit 99d9f14

File tree

3 files changed

+47
-0
lines changed

3 files changed

+47
-0
lines changed

articles/iot-central/TOC.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,9 @@
8181
href: howto-export-data.md
8282
- name: Visualize your data in Power BI
8383
href: howto-connect-powerbi.md
84+
- name: Connect other IoT clouds
85+
href: howto-build-iotc-device-bridge.md
86+
8487
- name : Adminstration
8588
items:
8689
- name: Administer your application
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
---
2+
# Mandatory fields. See more on aka.ms/skyeye/meta.
3+
title: Build the Azure IoT Central device bridge | Microsoft Docs
4+
description: Build the IoT Central device bridge to connect other IoT clouds (Sigfox, Particle, The Things Network etc.) to your IoT Central app.
5+
services: iot-central
6+
ms.service: iot-central
7+
author: viv-liu
8+
ms.author: viviali
9+
ms.date: 11/8/2018
10+
ms.topic: conceptual
11+
manager: peterpr
12+
---
13+
14+
# Build the IoT Central device bridge to connect other IoT clouds to IoT Central
15+
16+
*This topic applies to administrators.*
17+
18+
The IoT Central device bridge is an open-source solution that connects your Sigfox, Particle, The Things Network, and other clouds to your IoT Central app. Whether you are using asset tracking devices connected to Sigfox’s Low-Power-Wide Area Network, or using air quality monitoring devices on the Particle Device Cloud, or using soil moisture monitoring devices on TTN, you can directly leverage the power of IoT Central using the IoT Central device bridge. The device bridge connects other IoT clouds with IoT Central by forwarding the data your devices send to the other clouds through to your IoT Central app. In your IoT Central app, you can build rules and run analytics on that data, create workflows in Microsoft Flow and Azure Logic apps, export that data, and much more. Get the [IoT Central device bridge](https://aka.ms/iotcentralgithubdevicebridge) from Github
19+
20+
## What is it and how does it work?
21+
The IoT Central device bridge is an open-source solution in Github. It is ready to go with a “Deploy to Azure” button that deploys a custom Azure Resource Manager template with several Azure resources into your Azure subscription. The resources include:
22+
- Azure Function app
23+
- Azure Storage Account
24+
- App Service Plan (S1 tier)
25+
- Azure Key Vault
26+
The function app is the critical piece of the device bridge. It receives HTTP POST requests from other IoT platforms or any custom platforms via a simple webhook integration. We have provided examples that show how to connect to Sigfox, Particle, and TTN clouds. You can easily extend this solution to connect to your custom IoT cloud if your platform can send HTTP POST requests to your function app.
27+
The Function app transforms the data into a format accepted by IoT Central and forwards it along via DPS APIs.
28+
29+
![Azure functions screenshot](media/howto-build-iotc-device-bridge/azfunctions.png)
30+
31+
If your IoT Central app recognizes the device by device ID in the forwarded message, a new measurement will appear for that device. If the device ID has never been seen by your IoT Central app, your function app will attempt to register a new device with that device ID, and it will appear as an “Unassociated device” in your IoT Central app.
32+
33+
## How do I set it up?
34+
The instructions are listed in detail in the README file in the Github repo.
35+
36+
## Pricing
37+
This is all hosted in your Azure subscription. The majority of the estimated cost of the provisioned resources comes from the [price of a standard App Service Plan]( https://azure.microsoft.com/en-us/pricing/details/app-service/windows/). You can learn more about this and potential ways to reduce this in the README file.
38+
39+
## Next steps
40+
41+
Now that you've learned how to build the IoT Central device bridge, here is the suggested next step:
42+
43+
> [!div class="nextstepaction"]
44+
> [Manage your devices](howto-manage-devices.md)
369 KB
Loading

0 commit comments

Comments
 (0)