hello everyone, I have three ds18b20 connected to onewire on my esp 32.
I would like to post these values on blynk on three virtual pin.
How to integrate “Blynk.virtualWrite” into my code ?
// Send command to all the sensors for temperature conversion
sensors.requestTemperatures();
// Display temperature from each sensor
for (int i = 0; i < deviceCount; i++)
{
Serial.print("Sensor ");
Serial.print(i+1);
Serial.print(" : ");
tempC = sensors.getTempCByIndex(i);
Serial.print(tempC);
Serial.print((char)176);//shows degrees character
Serial.print("C | ");