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 cb2b3de commit 32ddf27Copy full SHA for 32ddf27
firmware/Weather_Shield_Weather_Station/Weather_Shield_Weather_Station.ino
@@ -176,7 +176,7 @@ void loop()
176
177
//Calc the wind speed and direction every second for 120 second to get 2 minute average
178
float currentSpeed = get_wind_speed();
179
- windspeedmph = currentSpeed;//update global variable for windspeed when using the printWeather() function
+ windspeedmph = currentSpeed; //update global variable for windspeed when using the printWeather() function
180
//float currentSpeed = random(5); //For testing
181
int currentDirection = get_wind_direction();
182
windspdavg[seconds_2m] = (int)currentSpeed;
0 commit comments