Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove 400b stack allocation from AdvWeb example
The AdvancedWebServer.ino example allocated a 400 byte char array on the stack which, in the case of the example, will work but in general is a dangerous thing to show new users to try. Instead, use a StreamString to generate the string on the heap.
- Loading branch information