StringSplitter
StringSplitter copied to clipboard
memory leak
Most of users just copy and paste example code, so StringSplitter_Example.ino better to explicitly free memory
delete splitter;
Well, this library does NOT deal with memory usage in a better way, so I switched to StringUtils instead for my quick project.
It creates a fixed size memory (by MAX inside code) rather than dynamically...