Try this
/**
Serial.print("Temperature...
...
...
*/
String send_this = String(t, 2) + "," + String(h,2);
Serial.println(send_this);
In app you receive a list with two elements.
Try this
/**
Serial.print("Temperature...
...
...
*/
String send_this = String(t, 2) + "," + String(h,2);
Serial.println(send_this);
In app you receive a list with two elements.