remove test printout

This commit is contained in:
Damian Schneider 2024-09-14 14:11:29 +02:00
parent 6a37f25c5d
commit 0e5bd4ed74

View File

@ -489,7 +489,6 @@ void NeoGammaWLEDMethod::calcGammaTable(float gamma)
for (size_t i = 0; i < 256; i++) {
gammaT[i] = (int)(powf((float)i / 255.0f, gamma) * 255.0f + 0.5f);
}
Serial.println("****GAMMA***"); //!!!
}
uint8_t IRAM_ATTR NeoGammaWLEDMethod::Correct(uint8_t value)