Updated FAQ (markdown)

Benoît Blanchon
2016-08-25 13:45:04 +02:00
parent cc48937a4f
commit 7f670398bb

3
FAQ.md

@@ -380,6 +380,7 @@ See issue [#166](https://github.com/bblanchon/ArduinoJson/issues/166), [#271](ht
### Can I parse data from a stream?
### Can I parse a JSON input that is too big to fit in memory?
No.
@@ -406,7 +407,7 @@ char json[MAX_SIZE];
stream.readBytesUntil('\n', json, MAX_JSON_SIZE);
```
If this is not acceptable, you should have a look at other libraries, like [aJson](https://github.com/interactive-matter/aJson).
If this is not acceptable, you should have a look at other libraries, like [json-streaming-parser](https://github.com/squix78/json-streaming-parser).
See issues [#60](https://github.com/bblanchon/ArduinoJson/issues/60), [#119](https://github.com/bblanchon/ArduinoJson/issues/119), [#194](https://github.com/bblanchon/ArduinoJson/issues/194), [#200](https://github.com/bblanchon/ArduinoJson/issues/200) and [#223](https://github.com/bblanchon/ArduinoJson/issues/223).