if one does not specify an Iot protocol when instancing ubidots (ubidots.h library), does it default to http, tcp ?
I was studying the examples.
In the send with timestamp example we have
Ubidots ubidots(UBIDOTS_TOKEN);
In the send with HTTP we get.
Ubidots ubidots(UBIDOTS_TOKEN, UBI_HTTP);
Also, is there and advantage to use TCP over HTTP when using send or get
Ubidots ubidots(UBIDOTS_TOKEN, UBI_TCP);
vs
Ubidots ubidots(UBIDOTS_TOKEN, UBI_HTTP);
My use case is sending weather sensor data to ubidots hourly, deep sleep between readings.
Sorry for the noob questions.
Thanks