Settimino Library - compilation problem

Hi
I am new to Arduino and I am writing here for the first time, my English is weak so I apologize in advance for mistakes in the post.

I have a problem compiling the code. I downloaded the Settumino library and imported it to the Arduino library, opened a sample example ReadDemo from the library, and reported an error message while compiling.

pripájam knižnicu a chybovú správu.
attaching library and error message.

I think there's a bug in the FS library. How and where do I get it?
Thanks for help.

Settimino_V2.0.0.zip (25.6 KB)

Error mesage.txt (21.7 KB)

Your error message indicates you are compiling for an Arduino Mega 2560.

If you look inside the platform.h file that came with your settimino library, there are different constant to define depending on the hardware you have. The attached version has this

//#define ARDUINO_LAN    
//#define ESP8266_FAMILY  
//#define ESP32_WIFI
//#define M5STACK_WIFI
#define M5STACK_LAN

which means you are targetting the M5STACK_LAN version (whatever that is) and that is trying to include FS.h which is an ESP8266 thing.

I would edit the file to define ARDUINO_LAN and try that. You do have a ethernet shield attached?

Changing the code helped
Thank you very much for your help
Solved

How about editing the original post title to include "[SOLVED]" either at the beginning or end? It helps others not to bother or find a solution when they have the same issue.