Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion firmware/Weather_Shield/Weather_Shield.ino
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ void loop()
if(++seconds_2m > 119) seconds_2m = 0;

//Calc the wind speed and direction every second for 120 second to get 2 minute average
float currentSpeed = get_wind_speed();
float currentSpeed = windspeedmph;
//float currentSpeed = random(5); //For testing
int currentDirection = get_wind_direction();
windspdavg[seconds_2m] = (int)currentSpeed;
Expand Down