| 30 | void writeBoundary() { mSPI.writeWord(0); mSPI.writeWord(0); } |
| 31 | |
| 32 | FASTLED_FORCE_INLINE void writeLed(fl::u8 r, fl::u8 g, fl::u8 b) { |
| 33 | FASTLED_REGISTER fl::u8 top = 0xC0 | ((~b & 0xC0) >> 2) | ((~g & 0xC0) >> 4) | ((~r & 0xC0) >> 6); |
| 34 | mSPI.writeByte(top); mSPI.writeByte(b); mSPI.writeByte(g); mSPI.writeByte(r); |
| 35 | } |
| 36 | |
| 37 | public: |
| 38 | P9813Controller() FL_NOEXCEPT {} |
no test coverage detected