Examples: add a note about performance issues with streams (#1476)

This commit is contained in:
Benoit Blanchon
2021-01-25 09:26:29 +01:00
parent 97b7161d78
commit 322d13de0d
4 changed files with 26 additions and 1 deletions

View File

@ -86,6 +86,12 @@ void loop() {
delay(10000);
}
// Performance issue?
// ------------------
//
// EthernetUDP is an unbuffered stream, which is not optimal for ArduinoJson.
// See: https://arduinojson.org/v6/how-to/improve-speed/
// See also
// --------
//