Updated NeoBitmapFile object (markdown)

Michael Miller
2016-04-23 23:25:03 -07:00
parent ccb4ca58b2
commit 6b7413c3d3

@@ -13,7 +13,7 @@ NeoPixelBus<NeoGrbwFeature, Neo800KbpsMethod> strip(PixelCount, PixelPin);
NeoBitmapFile<NeoGrbwFeature, File> image;
```
The other template class is the class type used by your library to represent a file. It must follow standard Arduino File API. Generally, just passing `File` like above is normal. For Esp8266, you pass a SPIFFS File type allowing this to read from SPIFFs library.
The other template class is the class type used by your library to represent a file. It must follow standard Arduino File API. Generally, just passing `File` like above is normal. For Esp8266, you may pass a SPIFFS File type allowing this to read from SPIFFs library.
## How to render the image