Skip to content

stefangordon/AzureIoT

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

54 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AzureIoT - Azure IoT Hub library for Arduino

This library is a port of the Microsoft Azure IoT device SDK for C to Arduino. It allows you to use several Arduino compatible boards with Azure IoT Hub.

Currently supported hardware:

Microsoft Azure Certified

Prerequisites

You should have the following ready before beginning with any board:

  • Currently this must be installed from source control by cloning the repo into your arduino libraries folder. An example is below:

    ```		
    cd C:\Program Files (x86)\Arduino\libraries		
    git clone <the URI for this repository>		
    ```		
    
    alternatively you can download the [zip file](https://github.com/stefangordon/AzureIoT/archive/master.zip) and place the contents at `C:\Program Files (x86)\Arduino\libraries\AzureIoT`
    
  • Then reference the section appropriate for your hardware below.

ESP8266

Sparkfun Thing, Adafruit Feather Huzzah, or generic ESP8266 board
  1. Install esp8266 board support into your Arduino IDE.

    • Start Arduino and open Preferences window.
    • Enter http://arduino.esp8266.com/stable/package_esp8266com_index.json into Additional Board Manager URLs field. You can add multiple URLs, separating them with commas.
    • Open Boards Manager from Tools > Board menu and install esp8266 platform 2.1.0 or later
    • Select your ESP8266 board from Tools > Board menu after installation
  2. Open the AzureIoTHub ESP8266 sample from the Arduino IDE File->Examples menu.

  3. Update Wifi SSID/Password in simplesample_http.ino

    • Ensure you are using a wifi network that does not require additional manual steps after connection, such as opening a web browser.
  4. Update IoT Hub Connection string in simplesample_http.c

Adafruit Feather M0

  1. Install Feather M0 board support into your Arduino IDE.
    • Start Arduino and open Preferences window.
    • Enter https://adafruit.github.io/arduino-board-index/package_adafruit_index.json into Additional Board Manager URLs field. You can add multiple URLs, separating them with commas.
    • Open Boards Manager from Tools > Board menu and install Adafruit SAMD Boards 1.0.7 or later.
    • Select your Adafruit Feather M0 from Tools > Board menu after installation
  2. Install the Adafruit WINC1500 wifi library
  3. Install the RTCZero library from the Arduino IDE Library Manager.
  4. Open the AzureIoTHub SAMD sample from the Arduino IDE File->Examples menu.
  5. Update Wifi SSID/Password in simplesample_http.ino
    • Ensure you are using a wifi network that does not require additional manual steps after connection, such as opening a web browser.
  6. Update IoT Hub Connection string in simplesample_http.c

MKR1000 or Zero + Wifi101

  1. Open the AzureIoTHub SAMD sample from the Arduino IDE File->Examples menu.
  2. Update Wifi SSID/Password in simplesample_http.ino
    • Ensure you are using a wifi network that does not require additional manual steps after connection, such as opening a web browser.
  3. Update IoT Hub Connection string in simplesample_http.c

License

See LICENSE file.

About

Azure IoT library for the Arduino

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 97.0%
  • C++ 2.9%
  • Other 0.1%