Paso 1: Ejemplo básico de enviar datos adicionales
Aquí más datos enviados están 05, 06, 07
const char IFTTT_POST_DATA [] = "{\"value1\":\" \",\"value2\":\05"06\",\"value3\":\"07\ "}";
int post_data_size = sizeof(IFTTT_POST_DATA);
String IFTTT_POST_DATA_SIZE = String(post_data_size);
Client.Print (String ("POST") + IFTTT_REQUEST + "HTTP/1.1\r\n"
+ "Host:" + IFTTT_HOST + "\r\n"
+ "Conexión: close\r\n"
+ "Content-Type: aplicación/json\r\n"
+ "Content-Length:" + IFTTT_POST_DATA_SIZE + "\r\n"
+ "\r\n"
+ IFTTT_POST_DATA + "\r\n");