Skip to content

Commit 6cb3c98

Browse files
committed
2 parents afc1e01 + afe506f commit 6cb3c98

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libraries/MySensors/examples/PressureSensor/PressureSensor.ino

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ MySensor gw;
1414
float lastPressure = -1;
1515
float lastTemp = -1;
1616
int lastForecast = -1;
17-
static char *weather[] = {"stable","sunny","cloudy","unstable","thunderstorm","unknown"};
17+
const char *weather[] = {"stable","sunny","cloudy","unstable","thunderstorm","unknown"};
1818
int minutes;
19-
float pressureSamples[6][5];
19+
float pressureSamples[7][6];
2020
int minuteCount = 0;
2121
bool firstRound = true;
2222
float pressureAvg[7];

0 commit comments

Comments
 (0)