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?