Hi blynkers,
I need your help. i can read value on arduino when i send to numeric input value from blynk application. (IOS)
I write to the buttom on void setup. not a loop , everything is right. But i need this value in a loop. i try timer function but i failed. I read continuously “0” in a loop but i can read the value in the code below . I hope we can solve my problem , thanks in advance.
void setup(void)
{...}
BLYNK_WRITE(V35) {
int programmobil = param.asInt();
Serial.print(programmobil);
}
void loop(void)
{...}
=> i need to read “programmobil value” in a loop function. ( it is always 0 ). I am not asking why value is 0 , question is how we can read this value in a loop.