温度をIFTTTにプッシュするサンプルです。
Dependencies: EthernetInterface IFTTT mbed-rtos mbed
Fork of IFTTT_Ethernet_Example by
main.cpp
- Committer:
- mbedAustin
- Date:
- 2015-07-13
- Revision:
- 1:3010b44f07ff
- Parent:
- 0:0f0676c43e4b
- Child:
- 2:6b86ba5c0e84
File content as of revision 1:3010b44f07ff:
#include "mbed.h" #include "EthernetInterface.h" #include "TCPSocketConnection.h" #include "ifttt.h" EthernetInterface eth; RawSerial pc(USBTX, USBRX); // tx, rx int main() { pc.baud(9600); eth.init(); //Use DHCP eth.connect(); printf("IP Address is %s \n\r", eth.getIPAddress()); 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.addIngredients("this is awesome","test-ing","data!!!"); // 3 optional Values to send along with trigger. ifttt.trigger(); // Send data using GET ifttt.addIngredients("Sending","GET","data"); ifttt.trigger(IFTTT_GET); // Send Data using POST ifttt.addIngredients("Sending","POST","things"); ifttt.trigger(IFTTT_POST); eth.disconnect(); while(1) { } }