Prevent Blynk Button Presses While Stepper Motor Is Running

And again… this code is not for the same purpose of you needs… but it also uses seperate Blynk Functions to gather values and pass that data onto Arduino functions… AKA…

BLYNK_WRITE(vPin) {
// get info here, assign to variable.
MyFunctionName();  // or instead of calling this function after each widget touch, use a timer... or both if needed.
}

void MyFunctionName() {
// take variable info compare with logic and, if needed/permitted, do stuff here
}