delivering arduino data to thingworx

19
Delivering Arduino Data to Thingworx Using MQTT over a Network By Bill Reichardt ([email protected])

Upload: others

Post on 11-Jan-2022

11 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Delivering Arduino Data to Thingworx

Delivering Arduino Data to Thingworx

Using MQTT over a Network By

Bill Reichardt ([email protected])

Page 2: Delivering Arduino Data to Thingworx

OverviewArduino is a low resource platform - Not suitable for any ThingWorx SDKMQTT protocol was designed for low resource platformsThingWorx provides a free MQTT extension

ThingWorxServer

MQTT ProtocolMQTT

Protocol

TCP/IP

TCP/IP

Page 3: Delivering Arduino Data to Thingworx

The Hardware1 Arduino, I used the Mega25601 Arduino Ethernet Shield1 Dallas Systems DS18B20 “One Wire” Temperature sensor

Page 4: Delivering Arduino Data to Thingworx

Hardware Out of the Box

Page 5: Delivering Arduino Data to Thingworx

Assembled4.7 KΩ Resistor is required (see next slide)The Sensor is powered by the Arduino via USBMultiple Sensors can share the same pins and resistor

Page 6: Delivering Arduino Data to Thingworx

Warning!Do not reverse +5V and GND on the 18B20!!!The sensor will overheat and burn out in secondsBuy more than one

More detailed description of this hardware can be found at http://www.hacktronics.com/Tutorials/arduino-1-wire-tutorial.html

Page 7: Delivering Arduino Data to Thingworx

Create an MQTT ServerAn MQTT server stores property updates from devicesThingWorx can apply these updates to Things on the serverMosquitto MQTT server

http://mosquitto.org/

OSX Install http://www.xappsoftware.com/wordpress/2014/10/30/install-mosquitto-on-mac-os-x/Windows comes with an installerYou can usually install it on the same system that ThingWorx is on.

Page 8: Delivering Arduino Data to Thingworx

Install pubsubclientYou will need the pubsubclient library installed in your Arduino IDEUse the Sketch>Include Library>Manage Libraries.. Menu to install it

Page 9: Delivering Arduino Data to Thingworx

Install sramYou will need the sram libraryIt is required by pubsubYou may have to restart before you can use your installed libraries

Page 10: Delivering Arduino Data to Thingworx

Test Out Your ConnectionIn your Arduino IDE menu go to File>Sketchbook>libraries>pubsubclient>mqtt_streamThis should open the mqtt_stream.ino exampleMake the changes shown here and upload it to your ArduinoScript creates a topic called outTopic

Page 11: Delivering Arduino Data to Thingworx

Testing Your ServerUse the Mosquitto command line client to subscribe to your topicRun:

mosquitto_sub -h 127.0.0.1 -t outTopic

-h is the server, 127.0.0.1 assumes you are running this command on the same hostIf everything is working, you should see “Hello World” in appear in your console when you turn your Arduino on.

Page 12: Delivering Arduino Data to Thingworx

Connecting the SensorThere should be a DS18x20_MQTT.ino sketch accompanying this slide deckYou may have to install the OneWire library to compile itMake the same IP address and Mac changes you made to the MQTT_Stream.ino exampleNote the topic changes, outTopic has been replaced with /Thingworx/ DS18Thing/ F & C to report temp readings

Page 13: Delivering Arduino Data to Thingworx

Installing the MQTT ExtensionDownload and install the MQTT extension from the ThingWorx Marketplace at:

http://marketplace.thingworx.com/downloads/mqtt/

When done you will now have these things…

Page 14: Delivering Arduino Data to Thingworx

Creating a Thing for Your DataCreate A new Thing using the MQTT ThingTemplate called DS18Thing

Page 15: Delivering Arduino Data to Thingworx

Give it PropertiesSince we are sending F & C temperature values, Give your thing an F & C number property.

Page 16: Delivering Arduino Data to Thingworx

Configure Your ThingThe configuration tab is where you enter your server settings. Just enter your server ip address.

Page 17: Delivering Arduino Data to Thingworx

Automating Makes it EasyThe Default Automapping settings workThe two topics we are using are

Fahrenheit Temp - /Thingworx/DS18Thing/FCelcius Temp - /Thingworx/DS18Thing/CGenerally /Thingworx/<Thingname>/<propname>

Make sure you check enabled!

Save this thing. If all is well you will see

Page 18: Delivering Arduino Data to Thingworx

Watch Your Data Roll InOnce your connection is established, touch the sensorHitting the refresh button will allow you to observe the temperature changes

Page 19: Delivering Arduino Data to Thingworx

ConclusionMultiple DS18 Temperature sensors can share the same, single in on your Arduino so you have created a platform to take multiple temperature ReadingsThe MQTT server can store readings and deliver them when the ThingWorx server is visible on your networkMQTT protocol is higher performance and easier to create than a REST web service connectionI want to credit a great topic in the ThingWorx community for getting me started on this project.

https://community.thingworx.com/message/5063#5063