fix: incorrect buffer length

This commit is contained in:
MingChia Chung 2020-07-22 02:04:35 +08:00
parent 8ce2822317
commit 87466f3d2b
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ void setup() {
} else {
display.clearDisplay(); //Clear everything that is stored in frame buffer of epaper
display.setCursor(0,0); //Set print position at the begining of the screen
char text[200]; //Array where data from SD card is stored (max 200 chars here)
char text[201]; //Array where data from SD card is stored (max 200 chars here)
int len = file.fileSize(); //Read how big is file that we are opening
if(len>200) len = 200; //If it's more than 200 bytes (200 chars), limit to max 200 bytes
file.read(text, len); //Read data from file and save it in text array