Example of sending MQTT data to MyDevices Cayenne using the MTSAS library

Dependencies:   Cayenne-MQTT-mbed-MTSAS X_NUCLEO_IKS01A1 mbed mtsas_lat3

Revision:
4:2b412949efb9
Parent:
3:a40321269c7f
Child:
5:960d9d8974c8
diff -r a40321269c7f -r 2b412949efb9 main.cpp
--- a/main.cpp	Tue Apr 25 22:00:32 2017 +0000
+++ b/main.cpp	Tue Apr 25 22:02:01 2017 +0000
@@ -15,9 +15,9 @@
 typedef CayenneMQTT::MQTTClient<MQTTNetwork<Cellular>, MQTTTimer> MQTTClient;
 
 // Cayenne authentication info. This should be obtained from the Cayenne Dashboard.
-string username = "da497640-dcce-11e6-b089-9f6bfa78ab33";
-string password = "68e890972b6cc0fc47fcd152554db7e78ec9b29f";
-string clientID = "4dad1980-2382-11e7-82dd-51ccf9b8e46b";
+string username = "MQTT-USERNAME";
+string password = "MQTT-PASSWORD";
+string clientID = "MQTT-CLIENTID";
 
 DigitalOut Led1Out(LED1);