page_type | languages | products | description | urlFragment | ||||
---|---|---|---|---|---|---|---|---|
sample |
|
|
A website to upload GIFs to the MXCHIP with Azure IoT Hub. |
mxchip-gifs-sample |
A website to upload GIFs to the MXCHIP with Azure IoT Hub
Great question - let's get started. Most importantly though, you'll need to install a few things:
-
NodeJS (version 8 or higher is fine).
-
Arduino IDE (For Windows users: For easy configuration, download the Installer instead of installing the app from the store).
-
ST-Link/V2 (to configure Windows USB drivers)
-
VS Code and extensions:
-
You'll also need an Azure account, if you don't have one already.
-
Optionally, Zadig if you're having difficulties uploading code to your device on Windows.
- Create an IoT Hub
- Create a new device identity
- Set credentials on your MXCHIP
- Upload code to your MXCHIP
- Add IoT Hub connection string to your environment variables
- Start the server!
We're going to use IoT Hub to communicate from our website to our MXCHIP device. Follow the docs guide on how to create an IoT Hub. If you already have an IoT Hub to use, you can skip this step.
- Once your IoT Hub is created, follow the docs guide on how to create a new device identity in the Azure Cloud Shell or in the portal.
- Once your device identity is created, copy the connection string. Refer to the docs guide to locate it.
- Just follow those steps only and come back here. If you already have an IoT Hub to use, just create the device identity, and come back here when you're done.
We'll need to store some credentials on your MXCHIP device so that it can connect to both IoT Hub and to your chosen WIFI.
- Plug in your MXCHIP via USB to your computer.
- Open your favourite terminal with screen installed, or you can use PuTTY.
- Connect to your device via screen / PuTTY following the MXCHIP documentation
- Once in the configuration terminal, use the
set_wifissid
,set_wifipwd
commands to store your local Wifi settings on the device. Here's an example of a command:set_wifissid My_SSID
- Use the
set_az_iothub
command with your device connection string you copied when you registered the device identity in an earlier step to store the device connection string on the device. - Use the
exit
command and watch the terminal to confirm that your MXCHIP is connected successfully. - You're done! Next step.
- If you're having difficulty configuring your device in the terminal:
- Connecting your device to wifi: Follow the configure wifi step in the following doc: Get Started
- Setting the connection string: In VS Code, hit Ctrl (or Cmd on OSX) + P to bring up the Command Palette, then type Azure IoT Device Workbench: Configure Device Settings > IoT Hub Connection String and paste your device connection string in the box.
- Install Visual Studio Code if you have not already.
- Setup your development environment for the MXCHIP following the guide.
You could use the commands from Azure IoT Device Workbench to provision IoTHub as well as set your device connection string. Check the above guide for details.
- Open project.code-workspace file from the repository's root directory in Visual Studio Code.
- Hit Ctrl (or Cmd on OSX) + P to bring up the Command Palette, then type Arduino: Library Manager, search for ArduinoJson and install version 5.13.5. Please do not install beta versions which contain breaking changes.
- Hit Ctrl (or Cmd on OSX) + P again, and then type Azure IoT Device Workbench. Select the command of Azure IoT Device Workbench: Update Device Code to upload the device code to your MXCHIP. Ensure your MXCHIP is plugged in ^___^
- The code should now be running on your device and waiting for a GIF! Onwards.
Our website needs to be able to see which devices are registered in your IoT Hub, and also to invoke device methods to control devices remotely. For this, we'll need a connection string for IoT Hub which has the right access policies.
- Create a new IoT Hub Access Policy with Service Connect, Registry Read, and Registry Write permissions. Name it 'mxchipgif' so that you remember what you created it for. This can be done the portal.
-
Copy the connection string for that policy.
-
Create a .env file under the repository's server folder in Visual Studio Code. Add the connection string value you copied in the previous step with the following format.
CONNECTION_STRING=your_connection_string
-
We're ready to run the server!
- Within this repository's folder on your computer, use your favourite terminal to run
cd server && npm install
- Then, run
npm start
and navigate to localhost:3000 in your favourite browser - Try sending a GIF to your MXCHIP! ^___^
Contributions are welcomed! Please open a pull request or issue and detail as much as you can your ideas for improvement.
Check out the CONTRIBUTING.md file in this repository for details.
Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.
When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.
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.