Marc Boon
Marc Boon
> ESP8266 is using SdFat internally for SD.h so you can't use two versions of SdFat in your program. ESP8266-3.0.2 is using SdFat 2.0.2. Is there a way to update...
To use the latest SdFat with ESP8266 I changed SdFat's library.json to target=esp8266 (instead of *). This way the library conflict resolver will pick the SdFat library instead of the...
> Can you please elaborate how did you made this work? I am also facing the same issue during compilation on my Wemos D1 R1. My fix was from last...
> Yes I know. SdFat works with ESP8266 once you delete the standard version of the library. It would be good to find a better way. A better way is...
> Hi, I recently upgraded 2.0.7 -> 2.1.0 your fantastic library. Unfortunately code compilation failed. > > Function to send file from SD via http: > > ``` > void...
> I ran into the same problem, and tried to fix it like so: > > ``` > FsFile file = sd.open(path); > server.setContentLength(file.size()); > server.send(200, contentType, ""); > server.client().write(file);...
> Same for me too but ı updated esp8266 configuration. ıt works. ı don't take same error anymore Can you please explain in more detail what you did?
Not only does getFormattedTime() not give the date, the time is often invalid, because the digits for minutes are reversed! I get for example: 06:75, 06:85, 06:95 instead of 06:57,...
> in version 3.2 getFormattedTime gives only the time, e.g. 17:35:27 and not the complete String including the date, e.g. 2021-05-16T17:35:27Z. > > Anyway to get the date? use getFomattedDate()...