Reading from cloud

I have low power device with ESP8266
It is connected to cloud (wake up from deep sleep) 1x hour read sensor and send data to cloud. Up to here everything perfect.
But I’d like to send my data to device. So it is possible to my program read V5 first thing that connected to cloud ?

thanks
Simon

I found it.
Command is
Blynk.syncVirtual(V5);

That’s correct, but it really depends how you structure your code. Deep sleep sketches that read data from the Blynk server then use that data to perform some calculation before uploading the result to Blynk needs to be structured very carefully.

Pete.