UDP requests, report interval, Tempest

Hi, i’ve made a simple Qt c++ UDP listening application where i receive data from tempest’s Hub.

I wonder if it’s possible to do manual requests of data at any time, or at least change the update intervals of data, i receive wind data every 3 sec and all the data every 1 minute.

Thank you in advance.
Franco

I doesn’t go faster then that. If you want it slower, you could simply check the timestamps and ignore the ones that are too fast for you.
Note that tempest will reduce measurement speed depending on battery power.
Alternatively you could request the latest data at any time from the server, which mostly sends the same data (no udp listener needed)

1 Like

UDP data is broadcast in the blind and cannot be changed. It is up to your application to decide when to harvest the data.

5 Likes