We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I can't seem to get your tft.drawImage to work with an *.c file stored in SPIFFS. I was using this code with another OLED:
File f; // OPEN FILE (ENTER FILE WITH PATH WIRH SLASH IN FRONT) f = SPIFFS.open("/file.mono", "r"); if (f) { int s = f.size(); Serial.printf("File Opened , Size=%d\r\n", s); String data = f.readString(); //Serial.println(data); const char* data1 = data.c_str(); f.close(); display.drawXbm(0, 0, 125, 60, data1); display.display();
but everything I tried in a similar way seems to fail..... Is this a bug or can you point me in the right direction to solve this?
BR, Bart
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I can't seem to get your tft.drawImage to work with an *.c file stored in SPIFFS.
I was using this code with another OLED:
but everything I tried in a similar way seems to fail.....
Is this a bug or can you point me in the right direction to solve this?
BR,
Bart
The text was updated successfully, but these errors were encountered: