axfatec
axfatec
Just tested with NODE-MCU ESP 8266 and display SD1106 1.3" using I2C definitions: SH1106 display(0x3c, D3, D4); SH1106Ui ui ( &display ); ..resutls: same issue of "TonyVera". Could you help...
Hello. Just to inform you that using: https://github.com/ThingPulse/esp8266-oled-ssd1306 last version 4.0 that includes the definitions for SH1106 too. the display works correctly. Pheraps it can help you. regards Alex
I found a working solution of SD.h lib reworked by : http://mcutry.tistory.com/47 that seems to re-addresses to SD the calls to SPIFFS. Unfortunately this lib has not been merged to...
Better ! thanks. so in my case (I'm not so expert) should have I to change my calls if(!SD.begin(chipSelect)) to like this? if(!SD::SD.begin(chipSelect)) and similarly to: myFile=SD.open("DATA.txt", FILE_WRITE); in myFile=SD::SD.open("DATA.txt",...
Thank you a lot..! I will check this new lib with "ESP8266FtpServer.h", then I will report any news.
Do you know if there is a porting to SDFat.h library in order to use it together with ESP8266FtpServer.h solving the SD card access instead of SPIFFS access ? This...
Actually, the SD.h modified by the article, with ESP8266FTPServer , works correctly. What I would do, (but I found hard) is to modify in the same way the SDFat.h library,...
But I tried and it did't work. So, something is still missing with joined use of SDFAt and ESP8266FTPServer. Anyway, I will try your previuous suggestion. Did you furthermore told...