Stop ESP32 warning

This commit is contained in:
Bodmer
2020-11-12 17:57:41 +00:00
committed by GitHub
parent 45eb2d38e5
commit 54f6e730b5

View File

@@ -353,7 +353,7 @@ void drawCube()
uint32_t computePrimeNumbers(int32_t n) {
if (n<2) return 1;
int32_t i, fact, j, p;
int32_t i, fact, j, p = 0;
//Serial.print("\nPrime Numbers are: \n");
for (i = 1; i <= n; i++)