A full cycle of writing a value for len bytes, including select, release, and waiting
| 61 | |
| 62 | /// A full cycle of writing a value for len bytes, including select, release, and waiting |
| 63 | void writeBytesValue(fl::u8 value, int len) { |
| 64 | select(); writeBytesValueRaw(value, len); release(); |
| 65 | } |
| 66 | |
| 67 | /// A full cycle of writing a value for len bytes, including select, release, and waiting |
| 68 | template <class D> void writeBytes(FASTLED_REGISTER fl::u8 *data, int len) { |
nothing calls this directly
no test coverage detected