MCPcopy Create free account
hub / github.com/FastLED/FastLED / testqadd8

Function testqadd8

src/lib8tion.cpp.hpp:221–236  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

219
220
221void testqadd8()
222{
223 delay(5000);
224 byte r, c;
225 for( r = 0; r <= 240; r += 10) {
226 Serial.print(r); Serial.print(" : ");
227 for( c = 0; c <= 240; c += 10) {
228 byte t;
229 t = fl::qadd8( r, c);
230 Serial.print(t); Serial.print(' ');
231 }
232 Serial.println(' ');
233 }
234 Serial.println("done.");
235 for(;;){};
236}
237
238void testnscale8x3()
239{

Callers

nothing calls this directly

Calls 3

delayFunction · 0.70
printMethod · 0.45
printlnMethod · 0.45

Tested by

no test coverage detected