In this section, you will find some examples of how to use some of the many available MQTT libraries and software functions to connect your Device to Datacake using MQTT.
The following code snippet shows you a very basic implementation on how to send Data from your devices to Datacake using Python, Paho MQTT Library.
For this example, we have been using Tinkerforge Hardware to generate real data.
from tinkerforge.ip_connection import IPConnectionfrom tinkerforge.bricklet_particulate_matter import BrickletParticulateMatterimport timeimport paho.mqtt.client as mqtt​client = mqtt.Client()​HOST = "localhost"PORT = 4223UID = "FX5"​def on_connect(client, userdata, flags, rc):print("Connected with result code "+str(rc))​def on_message(client, userdata, msg):print(msg.topic+" "+str(msg.payload))​def cb_pm_concentration(pm10, pm25, pm100):client.publish("dtck-pub/balena-fin-cellular-demo/0e5d7891-7b73-4377-a7f9-f837a12df327/PM25", pm25)client.publish("dtck-pub/balena-fin-cellular-demo/0e5d7891-7b73-4377-a7f9-f837a12df327/PM10", pm100)​if __name__ == "__main__":​ipcon = IPConnection()pm = BrickletParticulateMatter(UID, ipcon)​ipcon.connect(HOST, PORT)​pm.register_callback(pm.CALLBACK_PM_CONCENTRATION, cb_pm_concentration)pm.set_pm_concentration_callback_configuration(60000, False)​client.on_connect = on_connectclient.on_message = on_message​client.tls_set()client.username_pw_set("yourdatacaketokenhere", password="yourdatacaketokenhere")client.connect("mqtt.datacake.co", 8883, 60)client.loop_forever()
// Create a client instanceclient = new Paho.MQTT.Client("mqtt.datacake.co", 9001, "clientId");// set callback handlersclient.onConnectionLost = onConnectionLost;client.onMessageArrived = onMessageArrived;// connect the clientclient.connect({onSuccess: onConnect,useSSL: true,userName: "API TOKEN",password: "API TOKEN"});// called when the client connectsfunction onConnect() {// Once a connection has been made, make a subscription and send a message.console.log("onConnect");client.subscribe("dtck/mqtt-test/06a446aa-6fba-4813-a6ce-b2e3c16f9ebb/+");message = new Paho.MQTT.Message("23.5");message.destinationName = "dtck-pub/mqtt-test/06a446aa-6fba-4813-a6ce-b2e3c16f9ebb/TEMPERATURE";client.send(message);}// called when the client loses its connectionfunction onConnectionLost(responseObject) {if (responseObject.errorCode !== 0) {console.log("onConnectionLost:" + responseObject.errorMessage);}}// called when a message arrivesfunction onMessageArrived(message) {console.log("onMessageArrived:" + message.payloadString);}