From ce5b76d12baba70f57ff93093620170926e9141c Mon Sep 17 00:00:00 2001 From: V205Github <138826219+V205Github@users.noreply.github.com> Date: Fri, 7 Jul 2023 19:05:06 -0700 Subject: [PATCH] Update DHTtester.ino --- examples/DHTtester/DHTtester.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/DHTtester/DHTtester.ino b/examples/DHTtester/DHTtester.ino index d13507b..e671e50 100644 --- a/examples/DHTtester/DHTtester.ino +++ b/examples/DHTtester/DHTtester.ino @@ -33,7 +33,7 @@ DHT dht(DHTPIN, DHTTYPE); void setup() { Serial.begin(9600); Serial.println(F("DHTxx test!")); - + Serial.println(F("Starting " __FILE__ " from " __DATE__ __TIME__));// Prints the file name. dht.begin(); }