Bodmer / JPEGDecoder

A JPEG decoder library
Other
220 stars 64 forks source link

Specific folder #43

Closed tarbear123 closed 5 years ago

tarbear123 commented 5 years ago

How do you read a folder the the jpeg is in? // open the image file File jpgFile = SD.open( "arduino.jpg", FILE_READ); 

Bodmer commented 5 years ago

That is an SD library function. Info can be found here.

You should be able to use a line like:

File jpgFile = SD.open( "folder/arduino.jpg", FILE_READ);