Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

3
  • Why do you want to use EEPROM? Why not just a simple buffer array? Commented Apr 29, 2020 at 19:33
  • @chrisl It is a good idea, on what memory would the buffer array be stored, though? Commented Apr 30, 2020 at 9:02
  • The buffer would be stored in RAM. Normally EEPROM is only used, when you need persistent storage, which keeps the values over power cycles or resets. But that doesn't seem to be the case for you. Though you still need to see, how big you can make the buffer (that depends on the memory and library usage of your sketch) Commented Apr 30, 2020 at 10:23