Hi,
Is there a way to display the library version number in say an LED Display Widget?
Similar, is there an easy way to show the Android App version number?
Thanks
Nico
Hi,
Is there a way to display the library version number in say an LED Display Widget?
Similar, is there an easy way to show the Android App version number?
Thanks
Nico
@nvddussen if you look in the Terminal widget example you will see the following line:
terminal.println(F("Blynk v" BLYNK_VERSION ": Device started"));
So you can use BLYNK_VERSION variable in your sketch / project.
I suspect app version is not available and would require you to manually include it in your sketch if you wanted to see it in your project.
@Dmitriy and @vshymanskyy can you please confirm App version is not currently available? Would it be possible for this to be made available?
Currently app version is not available. Server side already knows on which version the connected android device is, so it is possible to implement, but what scenarios need such info?
I would like to have App version for debugging issues where “other problem users” are involved - need to know if they updated or not
That would be super!
Thanks!