Updated FAQ (markdown)

Benoît Blanchon
2016-08-25 19:06:35 +02:00
parent 509b52fecf
commit f57a99bc53

8
FAQ.md

@@ -132,6 +132,14 @@ The third solution is to run your program an print `jsonBuffer.size()` to get th
See issues [#243](https://github.com/bblanchon/ArduinoJson/issues/243) and [#302](https://github.com/bblanchon/ArduinoJson/issues/302).
### What are the common sizes for JsonBuffer?
| Input | AVR 8-bit | ESP8266 | x86 | x64 |
| ---------------------------------- | --------- | ------- | ----- | ----- |
| OpenWeatherMap (one location) | 418 | 684 | 1328 | 1448 |
| Weather Underground (one location) | 882 | 1424 | 2816 | 2912 |
| Forecast.io | 26818 | 43192 | 85352 | 88448 |
### I found a memory leak in the library!