8000 Updated README.md · rprand/ArduinoJson@c06f426 · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit c06f426

Browse files
committed
Updated README.md
1 parent e619b8f commit c06f426

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Arduino JSON library
22
====================
33

4-
*A simple and efficient JSON library for embedded systems.*
4+
*An elegant and efficient JSON library for embedded systems.*
55

66
It's design to be very lightweight, works without any allocation on the heap (no malloc).
77

@@ -22,9 +22,9 @@ Feature comparison
2222

2323
| Library | Memory allocation | Nested objects | Parser size | Encoder size |
2424
| ------------ | ----------------- | -------------- | ----------- | ------------- |
25-
| Arduino JSON | static | yes | 2616 Bytes | 628 bytes |
26-
| json-arduino | dynamic | no | 3348 (+28%) | not supported |
27-
| aJson | dynamic | yes | 5088 (+94%) | 4678 (+640%) |
25+
| Arduino JSON | static | yes | 2642 Bytes | 628 bytes |
26+
| json-arduino | dynamic | no | 3348 (+27%) | not supported |
27+
| aJson | dynamic | yes | 5088 (+93%) | 4678 (+640%) |
2828

2929
"Parser size" was measured with a program parsing `{"sensor":"outdoor","value":25.6}`.
3030
For each library, I wrote a program that extracts a string and a float. I subtracted the size of a program doing the same without any JSON parsing involved. [Source files are here](https://gist.github.com/bblanchon/e8ba914a7109f3642c0f).
@@ -52,5 +52,6 @@ From StackOverflow user `thegreendroid`:
5252
Links
5353
-----
5454

55-
* [The project for which I made me this library](http://blog.benoitblanchon.fr/rfid-payment-terminal/)
56-
* [Blog post on the motivation for this library](http://blog.benoitblanchon.fr/arduino-json-parser/)
55+
* [The project I originally wrote this library for](http://blog.benoitblanchon.fr/rfid-payment-terminal/)
56+
* [Motivation for this library](http://blog.benoitblanchon.fr/arduino-json-parser/)
57+
* [Release of version 2](http://blog.benoitblanchon.fr/arduino-json-v2-0/)

0 commit comments

Comments
 (0)
0