8000 Changed all links to point to arduinojson.org · adamwgray/ArduinoJson@221c286 · GitHub
[go: up one dir, main page]

Skip to content

Commit 221c286

Browse files
committed
Changed all links to point to arduinojson.org
1 parent 6666738 commit 221c286

File tree

170 files changed

+188
-677
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

170 files changed

+188
-677
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!--
22
Before opening an issue, please read the FAQ:
3-
https://bblanchon.github.io/ArduinoJson/faq/
3+
http://arduinojson.org/faq/
44
55
Please provide all the relevant information:
66
* good title

ArduinoJson.h

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
1+
// ArduinoJson - arduinojson.org
12
// Copyright Benoit Blanchon 2014-2017
23
// MIT License
3-
//
4-
// Arduino JSON library
5-
// https://bblanchon.github.io/ArduinoJson/
6-
// If you like this project, please add a star!
74

85
#include "src/ArduinoJson.h"

CMakeLists.txt

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
1+
# ArduinoJson - arduinojson.org
12
# Copyright Benoit Blanchon 2014-2017
23
# MIT License
3-
#
4-
# Arduino JSON library
5-
# https://bblanchon.github.io/ArduinoJson/
6-
# If you like this project, please add a star!
74

85
cmake_minimum_required(VERSION 3.0)
96
project(ArduinoJson)

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ Features
2525
* Small footprint
2626
* Header-only library
2727
* MIT License
28+
* [Comprehensive documentation](http://arduinojson.org)
2829

2930
Works on
3031
--------
@@ -58,9 +59,9 @@ double latitude = root["data"][0];
5859
double longitude = root["data"][1];
5960
```
6061

61-
[See JsonParserExample.ino](examples/JsonParserExample/JsonParserExample.ino)
62+
[See JsonParserExample.ino](http://arduinojson.org/example/parser/)
6263

63-
Use [ArduinoJson Assistant](https://bblanchon.github.io/ArduinoJson/assistant/) to compute the buffer size.
64+
Use [ArduinoJson Assistant](http://arduinojson.org/assistant/) to compute the buffer size.
6465

6566
#### Encoding / Generating
6667

@@ -80,17 +81,17 @@ root.printTo(Serial);
8081
// {"sensor":"gps","time":1351824120,"data":[48.756080,2.302038]}
8182
```
8283

83-
[See JsonGeneratorExample.ino](examples/JsonGeneratorExample/JsonGeneratorExample.ino)
84+
[See JsonGeneratorExample.ino](http://arduinojson.org/example/generator/)
8485

85-
Use [ArduinoJson Assistant](https://bblanchon.github.io/ArduinoJson/assistant/) to compute the buffer size.
86+
Use [ArduinoJson Assistant](http://arduinojson.org/assistant/) to compute the buffer size.
8687

8788

8889
Documentation
8990
-------------
9091

91-
The documentation is available online in the [ArduinoJson Website](https://bblanchon.github.io/ArduinoJson/).
92+
The documentation is available online in the [ArduinoJson Website](http://arduinojson.org/).
9293

93-
The [ArduinoJson Assistant](https://bblanchon.github.io/ArduinoJson/assistant/) helps you get started with the library.
94+
The [ArduinoJson Assistant](http://arduinojson.org/assistant/) helps you get started with the library.
9495

9596

9697
Donators

SUPPORT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ We'll be very happy to help you, but first please read the following.
66

77
## Before asking for help
88

9-
1. Read the [FAQ](https://bblanchon.github.io/ArduinoJson/faq/)
10-
2. Search in the [API Reference](https://bblanchon.github.io/ArduinoJson/api/)
9+
1. Read the [FAQ](http://arduinojson.org/faq/)
10+
2. Search in the [API Reference](http://arduinojson.org/api/)
1111

1212
If you did not find the answer, please create a [new issue on GitHub](https://github.com/bblanchon/ArduinoJson/issues/new).
1313

examples/JsonGeneratorExample/JsonGeneratorExample.ino

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
1+
// ArduinoJson - arduinojson.org
12
// Copyright Benoit Blanchon 2014-2017
23
// MIT License
3-
//
4-
// Arduino JSON library
5-
// https://bblanchon.github.io/ArduinoJson/
6-
// If you like this project, please add a star!
74

85
#include <ArduinoJson.h>
96

@@ -17,7 +14,7 @@ void setup() {
1714
//
1815
// Inside the brackets, 200 is the size of the pool in bytes.
1916
// If the JSON object is more complex, you need to increase that value.
20-
// See https://bblanchon.github.io/ArduinoJson/assistant/
17+
// See http://arduinojson.org/assistant/
2118
StaticJsonBuffer<200> jsonBuffer;
2219

2320
// StaticJsonBuffer allocates memory on the stack, it can be

examples/JsonHttpClient/JsonHttpClient.ino

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
// Sample Arduino Json Web Client
22
// Downloads and parse http://jsonplaceholder.typicode.com/users/1
33
//
4+
// ArduinoJson - arduinojson.org
45
// Copyright Benoit Blanchon 2014-2017
56
// MIT License
6-
//
7-
// Arduino JSON library
8-
// https://bblanchon.github.io/ArduinoJson/
9-
// If you like this project, please add a star!
107

118
#include <ArduinoJson.h>
129
#include <Ethernet.h>
@@ -135,7 +132,7 @@ bool skipResponseHeaders() {
135132
// }
136133
bool readReponseContent(struct UserData* userData) {
137134
// Compute optimal size of the JSON buffer according to what we need to parse.
138-
// See https://bblanchon.github.io/ArduinoJson/assistant/
135+
// See http://arduinojson.org/assistant/
139136
const size_t BUFFER_SIZE =
140137
JSON_OBJECT_SIZE(8) // the root object has 8 elements
141138
+ JSON_OBJECT_SIZE(5) // the "address" object has 5 elements

examples/JsonParserExample/JsonParserExample.ino

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
1+
// ArduinoJson - arduinojson.org
12
// Copyright Benoit Blanchon 2014-2017
23
// MIT License
3-
//
4-
// Arduino JSON library
5-
// https://bblanchon.github.io/ArduinoJson/
6-
// If you like this project, please add a star!
74

85
#include <ArduinoJson.h>
96

@@ -17,7 +14,7 @@ void setup() {
1714
//
1815
// Inside the brackets, 200 is the size of the pool in bytes,
1916
// If the JSON object is more complex, you need to increase that value.
20-
// See https://bblanchon.github.io/ArduinoJson/assistant/
17+
// See http://arduinojson.org/assistant/
2118
StaticJsonBuffer<200> jsonBuffer;
2219

2320
// StaticJsonBuffer allocates memory on the stack, it can be

examples/JsonServer/JsonServer.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ void loop() {
6464
if (client) {
6565
bool success = readRequest(client);
6666
if (success) {
67-
// Use https://bblanchon.github.io/ArduinoJson/assistant/ to
67+
// Use http://arduinojson.org/assistant/ to
6868
// compute the right size for the buffer
6969
StaticJsonBuffer<500> jsonBuffer;
7070
JsonObject& json = prepareResponse(jsonBuffer);

examples/JsonUdpBeacon/JsonUdpBeacon.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ void setup() {
4949
void loop() {
5050
delay(1000);
5151

52-
// Use https://bblanchon.github.io/ArduinoJson/assistant/ to
52+
// Use http://arduinojson.org/assistant/ to
5353
// compute the right size for the buffer
5454
StaticJsonBuffer<300> jsonBuffer;
5555
JsonObject& json = buildJson(jsonBuffer);

0 commit comments

Comments
 (0)
0