How to read data from blynk in void loop?

I want to read data from blynk in void loop like this.

    void loop() {
      Blynk.run();
      Serial.println("low_humid " + low_humid );
      delay(1000);
    }

    BLYNK_WRITE(V0)
    {
      low_humid = param.asInt(); 
    }

The output show text “low_humid” only not show value. How to fix it?

I think you’re misunderstanding the purpose of the BLYNK_WRITE function. It doesn’t write data to the app.

Also, you can’t use delays in the void loop with Blynk, you need to use a timer instead.

Start by reading this:

Pete.

Thank you