https://github.com/johnwalicki/particle-electron-mqtt-watsoniot
How to use MQTT to connect a Particle Electron to the IBM Watson IoT Platform
https://github.com/johnwalicki/particle-electron-mqtt-watsoniot
ibmiot mqtt particle particle-electron
Last synced: 2 months ago
JSON representation
How to use MQTT to connect a Particle Electron to the IBM Watson IoT Platform
- Host: GitHub
- URL: https://github.com/johnwalicki/particle-electron-mqtt-watsoniot
- Owner: johnwalicki
- License: apache-2.0
- Created: 2019-09-25T21:07:49.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-10-21T20:40:08.000Z (over 5 years ago)
- Last Synced: 2024-12-25T20:11:46.436Z (4 months ago)
- Topics: ibmiot, mqtt, particle, particle-electron
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Particle-Electron-MQTT-WatsonIoT
How to use MQTT to connect a Particle Electron to the IBM Watson IoT Platform## Introduction
## Learning Objectives:
In this workshop, you will learn how to:### Part 1
- Learn about the Particle Electron
- Install the **particle** CLI
- Compile and flash### Part 2
- Create an IoT Starter Kit application running in IBM Cloud
- Launch the Watson IoT Starter application
- Open the Watson IoT Platform so that you can send/receive MQTT data from the Particle device
- Create a Particle Electron device type and device
- Configure the Node-RED visual programming editor
- Secure your Node-RED Editor in IBM Cloud
- Install additional Node-RED nodes
- Import a prebuilt flow from GitHub
- Create a new Node-RED flow and configure IoT Nodes### Part 3
- Learn about MQTT
- How to send MQTT data to Watson IoT### Part 4
- MQTT Example #1 - MQTT to Watson IoT Quickstart (Insecure)
- MQTT Example #2 - MQTT to Watson IoT Registered Device (Insecure)
- MQTT Example #3 - Secure MQTT to Watson IoT
- MQTT Example #4 - Send SHT-31 data to Watson IoT
- MQTT Example #5 - Send DHT-11 / DHT-22 data to Watson IoT
- MQTT Example #6 - Send Particle Asset Tracker data to Watson IoT# MQTT Examples
### 1 - MQTT to Watson IoT Quickstart
In this [example](examples/mqtt-quickstart/README.md), we demonstrate how to connect a Particle Electron to Watson IoT Quickstart using the MQTT library
### 2 - MQTT to Watson IoT Registered Device
In this [example](examples/mqtt-wiotp/README.md), we demonstrate how to connect a Particle Electron to Watson IoT Platform using the MQTT library
### 3 - Secure MQTT to Watson IoT
In this [example](examples/mqtt-tls-wiotp/README.md), we demonstrate how to connect a Particle Electron to Watson IoT Platform using the MQTT-TLS library
### 4 - Send SHT-31 data to Watson IoT
In this [example](examples/mqtt-tls-wiotp-SHT/README.md), we demonstrate how to connect a Particle Electron and a SHT-31 temperature / humidity sensor to Watson IoT Platform using the MQTT-TLS library
### 5 - Send DHT-11 / DHT-22 data to Watson IoT
In this [example](examples/mqtt-tls-wiotp-DHT/README.md), we demonstrate how to connect a Particle Electron and a DHT temperature / humidity sensor to Watson IoT Platform using the MQTT-TLS library
### 6 - Send Particle Asset Tracker data to Watson IoT
In this [example](examples/mqtt-tls-wiotp-AssetTracker/README.md), we demonstrate how to connect a Particle Electron Asset Tracker accelerometer sensor to Watson IoT Platform using the MQTT-TLS library
### Authors
- [John Walicki](https://github.com/johnwalicki/)
___
Enjoy! Give us [feedback](https://github.com/johnwalicki/Particle-Electron-MQTT-WatsonIoT/issues) if you have suggestions on how to improve this tutorial.
## License
This tutorial is licensed under the Apache Software License, Version 2. Separate third party code objects invoked within this code pattern are licensed by their respective providers pursuant to their own separate licenses. Contributions are subject to the [Developer Certificate of Origin, Version 1.1 (DCO)](https://developercertificate.org/) and the [Apache Software License, Version 2](http://www.apache.org/licenses/LICENSE-2.0.txt).
[Apache Software License (ASL) FAQ](http://www.apache.org/foundation/license-faq.html#WhatDoesItMEAN)
***
*Quick links :*[Home](/README.md) - [MQTT Quickstart](/examples/mqtt-quickstart/README.md) - [MQTT WIoTP](/examples/mqtt-wiotp/README.md) - [MQTT-TLS WIoTP](/examples/mqtt-tls-wiotp/README.md) - [MQTT-TLS SHT](/examples/mqtt-tls-wiotp-SHT/README.md) - [MQTT-TLS DHT](/examples/mqtt-tls-wiotp-DHT/README.md) -
[MQTT-TLS AssetTracker](/examples/mqtt-tls-wiotp-AssetTracker/README.md)
***