I have a sketch that's consuming 88% of the storage. Its printing some values to Console to debug it and after some time it stops to print the values. Does somebody have a clue why the values disapear?
In reading a book on Python, I discovered a new word, immutable. It means something cannot be changed and it applies to "String". A string in any computer language I know of, a String cannot be changed. That includes C++ for the Arduino. What appears to you the happening is the String is really changed. But in reality a NEW string is created with the change or addition you coded. The old String is still in memory, and will never be reclaimed. So every time you do something with a String, you are using more memory.