I created slider in blynk and I want to get the slider value to outside variable (Not inside BLYNK_WRITE(Vx) )
How is it possible to get the variable out of the BLYNK_WRITE() and use it for global variable . When i define the variable global the value display always shows 0. Can anyone cmnt code with slider value assign to outside variable from BLYNK_WRITE()
You are probably re-declaring the variable as local, by having an int Or float Command before your variable name within the BLYNK_WRITE function, but itโs impossible to say with any certainty as you havenโt bothered to share your sketch.