We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1afad68 commit debe757Copy full SHA for debe757
Exercise_12_IoT_Blynk/Exercise_12_IoT_Blynk.ino
@@ -71,12 +71,11 @@ void loop() {
71
Serial.println("Humidity: " + String(humidity) + " %RH");
72
Serial.println("Temperature: " + String(temperature) + " °C");
73
74
+ Serial.println("=============================================");
75
+
76
// STEP 3: Data Ingestion - Send data to Blynk's data stream using HTTPS
77
Blynk.virtualWrite(V0, humidity);
78
Blynk.virtualWrite(V1, temperature);
79
80
}
-
- Serial.println("=============================================");
81
- delay(3000);
82
0 commit comments