ESPLogger
ESPLogger copied to clipboard
An Arduino library providing a minimal interface to log data on flash memory and SD cards with ESP8266 and ESP32.
Hi, we use SD_MMC to communicate to our SD card, instead of SPI. Is it possible to use this with your library? We ran into a few problems while testing...
I need to download log file through web server. How can I do it safely? First idea: create SPIFFS file("/log/mylog.log") and read all content, but I think it is dangerous...
Thanks for you project! I'm waiting it for my IoT project: https://github.com/dontsovcmc/waterius I need to log wake up events infinitely, so I need loop logging. Can I do it with...
Dear dev, first of all I want to thank you for your ESP32 library! I guess I'm doing something wrong, because I set the file size limit to "100000". Every...
Since your library is at a pretty low level - append(string)., I'm building a class to make structured records to append, so your libary is part of that class. The...
When I run the example code in platformiIO I'm getting the following error: ``` E (57) SPIFFS: mount failed, -10025 [E][SPIFFS.cpp:72] begin(): Mounting SPIFFS failed! Error: -1 [E][vfs_api.cpp:22] open(): File...
`n file included from D:\David\MyDocuments\Arduino\libraries\ESP_Logger\src\logger_routine.cpp:29:0: D:\David\MyDocuments\Arduino\libraries\ESP_Logger\src\logger_routine.h: In constructor 'LoggerRoutine::LoggerRoutine(Logger&, float)': D:\David\MyDocuments\Arduino\libraries\ESP_Logger\src\logger_routine.h:44:20: error: no matching function for call to 'Ticker::Ticker()' period(period){}; ^ D:\David\MyDocuments\Arduino\libraries\ESP_Logger\src\logger_routine.h:44:20: note: candidates are: In file included from D:\David\MyDocuments\Arduino\libraries\ESP_Logger\src\logger_routine.h:32:0,...
Hello, how would you serve it over HTTP? Is there an example? I don't think serving the log directly from SPIFFS into the WebServer handler function is the appropriate method...