From 49786a52220ef4d10fc44854b2028a33657e8770 Mon Sep 17 00:00:00 2001 From: Nathan Seidle Date: Fri, 11 Sep 2015 17:09:08 -0600 Subject: [PATCH] Fixed NaN bug. See bug 15. --- firmware/Weather_Shield/Weather_Shield.ino | 1 - 1 file changed, 1 deletion(-) diff --git a/firmware/Weather_Shield/Weather_Shield.ino b/firmware/Weather_Shield/Weather_Shield.ino index f044dea..c43f370 100644 --- a/firmware/Weather_Shield/Weather_Shield.ino +++ b/firmware/Weather_Shield/Weather_Shield.ino @@ -189,7 +189,6 @@ void loop() //Check to see if this is a gust for the day if(currentSpeed > windgustmph) { - Serial.print("Gust!!"); windgustmph = currentSpeed; windgustdir = currentDirection; } -- GitLab