Mbed Tigger IFTTT Send A Mail

Dependencies:   EthernetInterface IFTTT mbed-rtos mbed

Fork of IFTTT_Ethernet_Example by Austin Blackstone

Files at this revision

API Documentation at this revision

Comitter:
Jeffdhyan
Date:
Sat Sep 10 12:12:50 2016 +0000
Parent:
1:3010b44f07ff
Commit message:
EtherNet to IFTTT Send a Mail

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/main.cpp	Mon Jul 13 18:50:53 2015 +0000
+++ b/main.cpp	Sat Sep 10 12:12:50 2016 +0000
@@ -15,7 +15,7 @@
     TCPSocketConnection socket;
 
     // Initialize ifttt object, add up to 3 optional values, trigger event.
-    IFTTT ifttt("YourEventName","ChangeToYourSecretKey", &socket); // EventName, Secret Key, socket to use
+    IFTTT ifttt("hellowordmbed","ExqSjQiwzZINRMFTOgo--", &socket); // EventName, Secret Key, socket to use
     ifttt.addIngredients("this is awesome","test-ing","data!!!");     // 3 optional Values to send along with trigger.
     ifttt.trigger();