//Send the Data to Hologram Network
if (client.connect(server, port)) {
Serial.println("connected");
// Send a Message request:
client.println("{\"k\":\"" + HOLOGRAM_DEVICE_KEY +"\",\"d\":\""+ Values+ "\",\"t\":\""+HOLOGRAM_TOPIC+"\"}");
} else {
// if you didn't get a connection to the server:
Serial.println("connection failed");
}
client.stop();
delay(10000);
}