@copydoc CPixelLEDController::showPixels()
| 34 | protected: |
| 35 | /// @copydoc CPixelLEDController::showPixels() |
| 36 | virtual void showPixels(PixelController<RGB_ORDER> & pixels) { |
| 37 | int iChannel = 1; |
| 38 | while(pixels.has(1)) { |
| 39 | DmxSimple.write(iChannel++, pixels.loadAndScale0()); |
| 40 | DmxSimple.write(iChannel++, pixels.loadAndScale1()); |
| 41 | DmxSimple.write(iChannel++, pixels.loadAndScale2()); |
| 42 | pixels.advanceData(); |
| 43 | pixels.stepDithering(); |
| 44 | } |
| 45 | } |
| 46 | }; |
| 47 | |
| 48 |
nothing calls this directly
no test coverage detected