IFTTT triggering example

Dependencies:   EthernetInterface IFTTT mbed-rtos mbed

Files at this revision

API Documentation at this revision

Comitter:
ytsuboi
Date:
Sun Mar 27 10:52:50 2016 +0000
Parent:
0:a8dedd1df78f
Commit message:
changed Value 1.

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/main.cpp	Sun Mar 27 10:37:06 2016 +0000
+++ b/main.cpp	Sun Mar 27 10:52:50 2016 +0000
@@ -17,6 +17,6 @@
     IFTTT ifttt("EventName","SecurityKey", &socket); // EventName, Secret Key, socket to use
 
     // Send Data using POST
-    ifttt.addIngredients("20 - 30"); //Value1
+    ifttt.addIngredients("hogehoge"); //Value1
     ifttt.trigger(IFTTT_POST);
 }