5

I would like to store some data in esp8266. There are two ways SPIFFS and EEPROM. I can not decide which one to use as both of them saves data. I also read that both SPIFFS and EEPROM are part of Flash drive. So does that mean hardware for both of them is same?

1 Answers1

6

SPIFFS (Serial Peripheral Interface Flash File System) is a method for creating a file system in NOR-type flash memory.

EEPROM (Electrically Erasable Programmable Read-Only Memory) is a type of non-volatile memory, floating-gate transistors.

You can use either.

MatsK
  • 951
  • 6
  • 18