Changed all links to point to arduinojson.org

This commit is contained in:
Benoit Blanchon
2017-11-07 20:42:50 +01:00
parent 66667382e1
commit 221c2861fc
170 changed files with 188 additions and 677 deletions

View File

@ -25,6 +25,7 @@ Features
* Small footprint
* Header-only library
* MIT License
* [Comprehensive documentation](http://arduinojson.org)
Works on
--------
@ -58,9 +59,9 @@ double latitude = root["data"][0];
double longitude = root["data"][1];
```
[See JsonParserExample.ino](examples/JsonParserExample/JsonParserExample.ino)
[See JsonParserExample.ino](http://arduinojson.org/example/parser/)
Use [ArduinoJson Assistant](https://bblanchon.github.io/ArduinoJson/assistant/) to compute the buffer size.
Use [ArduinoJson Assistant](http://arduinojson.org/assistant/) to compute the buffer size.
#### Encoding / Generating
@ -80,17 +81,17 @@ root.printTo(Serial);
// {"sensor":"gps","time":1351824120,"data":[48.756080,2.302038]}
```
[See JsonGeneratorExample.ino](examples/JsonGeneratorExample/JsonGeneratorExample.ino)
[See JsonGeneratorExample.ino](http://arduinojson.org/example/generator/)
Use [ArduinoJson Assistant](https://bblanchon.github.io/ArduinoJson/assistant/) to compute the buffer size.
Use [ArduinoJson Assistant](http://arduinojson.org/assistant/) to compute the buffer size.
Documentation
-------------
The documentation is available online in the [ArduinoJson Website](https://bblanchon.github.io/ArduinoJson/).
The documentation is available online in the [ArduinoJson Website](http://arduinojson.org/).
The [ArduinoJson Assistant](https://bblanchon.github.io/ArduinoJson/assistant/) helps you get started with the library.
The [ArduinoJson Assistant](http://arduinojson.org/assistant/) helps you get started with the library.
Donators