From 7d62eea8f79adc123d1e3d6ce1902b69a02788dc Mon Sep 17 00:00:00 2001 From: Tom Nordal Date: Tue, 25 Jun 2024 23:59:24 +0200 Subject: [PATCH] add delay --- Sensors/src/main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Sensors/src/main.cpp b/Sensors/src/main.cpp index 13d3c04..c21c43a 100644 --- a/Sensors/src/main.cpp +++ b/Sensors/src/main.cpp @@ -16,6 +16,7 @@ float tempC; float tempF; int setTime = 500; +int dt = 1000; void setup() { @@ -43,6 +44,6 @@ void loop() { Serial.print(tempF); Serial.println(" *F"); - delay(setTime * 2); + delay(dt); }