Skip to content

A website to upload GIFs to the MXCHIP

License

Notifications You must be signed in to change notification settings

arvinhubert/mxchip-gifs

 
 

Repository files navigation

mxchip-gifs

A website to upload GIFs to the MXCHIP

screenshot of web appanimated gif of mxchip showing a gif

How do I run this example application?

Great question - let's get started. Most importantly though, you'll need to install a few things:

  1. Create an IoT Hub
  2. Create a new device identity
  3. Set credentials on your MXCHIP
  4. Upload code to your MXCHIP
  5. Add IoT Hub connection string to your environment variables
  6. Start the server!

1. Create an IoT Hub

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.

2. Create a new device identity

  1. 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.
  2. Once your device identity is created, copy the connection string. Refer to the docs guide to locate it.
  3. 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.

3. Set credentials on your MXCHIP

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.

  1. Plug in your MXCHIP via USB to your computer.
  2. Open your favourite terminal with screen installed, or you can use PuTTY.
  3. Connect to your device via screen / PuTTY following the MXCHIP documentation
  4. 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
  5. 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.
  6. Use the exit command and watch the terminal to confirm that your MXCHIP is connected successfully.
  7. You're done! Next step.

3. Upload code to your MXCHIP

  1. Install Visual Studio Code if you have not already.
  2. 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.

  3. Open project.code-workspace file from the repository's root directory in Visual Studio Code.
  4. 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.
  5. 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 ^___^
  6. The code should now be running on your device and waiting for a GIF! Onwards.

4. Add IoT Hub connection string to your environment variables

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.

  1. 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.

screenshot of example access policy in the portal

  1. Copy the connection string for that policy.

  2. 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
  3. We're ready to run the server!

5. Start the server

  1. Within this repository's folder on your computer, use your favourite terminal to run cd server && npm install
  2. Then, run npm start and navigate to localhost:3000 in your favourite browser
  3. Try sending a GIF to your MXCHIP! ^___^

Contributing

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.

About

A website to upload GIFs to the MXCHIP

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 56.2%
  • C++ 17.6%
  • CSS 15.0%
  • HTML 9.9%
  • Dockerfile 1.3%