This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments
Using this SDK, developers write applications that enable gateway-connected devices to communicate with Azure IoT Hub. Such applications use a collection of modules to aggregate and transform data, process commands, or perform any number of related tasks. Modules communicate with one another via a message broker. Developers can choose from available modules or write their own to create gateways tailored to any scenario.
Visit http://azure.com/iotdev to learn more about developing applications for Azure IoT.
The following modules are available in this repository:
Name Description ble Represents a Bluetooth low energy (BLE) device connected to the gateway hello_world Sends a "hello world" message periodically identitymap Maps MAC addresses to IoT Hub device IDs/keys iothub Sends/receives messages to/from mapped devices and IoT Hub logger Writes received message content to a file simulated_device Simulates a gateway-connected BLE device azure_functions Sends message content to an Azure Function
Other people are creating modules for the gateway SDK too! See the More information link for a module to find out how to get it, who supports it, etc.
Name More information Targets gateway SDK version Modbus https://github.com/Azure/iot-gateway-modbus 2016-11-18 OPC-UA Client https://github.com/Azure/iot-gateway-opc-ua 2016-11-18
We'd love to feature your module here! See our Contribution guidelines for more info.
The SDK is designed to be used with a broad range of operating system platforms. The version of the Azure IoT Gateway SDK has been tested on the following operating systems:
- Ubuntu 14.04
- Ubuntu 15.10
- Yocto Linux 3.0 on Intel Edison
- Windows 10
- Wind River 7.0
The SDK is designed to be independent from hardware in addition to the operating system. Developers can power their gateways with hardware as constrained as a microcontroller to systems as powerful as a ruggedized server.
This folder contains general documentation for the SDK as well as step by step instructions for building and running the samples:
General documentation
- Dev box setup contains instructions for configuring your machine to build the Azure IoT Gateway SDK.
API documentation can be found here.
This folder contains all of the samples for the Azure IoT Gateway SDK. Samples are separated in their own folders. Step by step instructions for building and running each sample can be found in the README.md file in the root of each sample's folder.
Samples include:
- Hello World - Learn the basic concepts of the Azure IoT Gateway SDK by creating a simple gateway that logs a hello world message to a file every 5 seconds.
- Simulated Device Send data to IoTHub from a gateway using a simualted device instead of using a real device.
- Real Device - Send data to IoTHub from a real device that could not connect to the cloud unless it connected through a gateway. This sample uses a Blueetooth Low Energy Texas Instruments SensorTag as the end device .
This folder contains all of the modules included with the Azure IoT Gateway SDK. Each module represents a specific piece of functionality that can be composed into an end to end gateway solution. Details on the implementation of each module can be found in each module's devdoc/ folder.
This folder contains all of the core infrastructure necessary to create a gateway solution. In general, developers only need to use components in the core folder, not modify them. API documentation for core infrastructure can be found here. Details on the implementation of core components can be found in core/devdoc.
This is the default folder that cmake will place the output from our build scripts. The developer always has the final say about the destinaiton of build output by creating a folder, navigating to it, and then running cmake from there. Detailed instructions are contained in each sample doc.