21 bool available()
const;
22 int32_t BytesLeft()
const;
23 int32_t FileSize()
const;
27 size_t read(uint8_t* dst,
size_t n);
28 size_t read(
CRGB* dst,
size_t n) {
return read((uint8_t*)dst, n * 3); }
32 void RefillBufferIfNecessary();
36 static const int kBufferSize = 64;
37 uint8_t mBuffer[kBufferSize];