From 77419d562bf63a103fd73bf15ca9436822ce2000 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Blanchon?= Date: Mon, 19 Dec 2016 15:19:11 +0100 Subject: [PATCH] Updated Bag of Tricks (markdown) --- Bag-of-Tricks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bag-of-Tricks.md b/Bag-of-Tricks.md index 1ae37b4..8038526 100644 --- a/Bag-of-Tricks.md +++ b/Bag-of-Tricks.md @@ -250,7 +250,7 @@ See issue [#206](https://github.com/bblanchon/ArduinoJson/issues/206). ## Render to ESP8266 WiFiClient When used on [ESP8266 Arduino](https://github.com/esp8266/Arduino), there is currently not a direct way to render the JSON to WiFiClient, since it does not implement required Print interface. -This utility class serves as bridge between Print and WiFiClient classes. Internal buffer is required, otherwise rendering will take several seconds (every byte will be sent as separate packet). Increase buffer for faster send, if you have spare memory. +This utility class serves as an adapter between `Print` and `WiFiClient` classes. Internal buffer is required, otherwise rendering will take several seconds (every byte will be sent as a separate packet). Increase buffer for faster send, if you have spare memory. Create this as separate header file `WiFiClientPrint.h` or just include class in your program.