8000 Changed all link to point to HTTPS version · java64/ArduinoJson@7626db6 · GitHub
[go: up one dir, main page]

Skip to content

Commit 7626db6

Browse files
committed
Changed all link to point to HTTPS version
1 parent 6d8329b commit 7626db6

File tree

11 files changed

+18
-18
lines changed

11 files changed

+18
-18
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-
http://arduinojson.org/faq/
3+
https://arduinojson.org/faq/
44
55
Please provide all the relevant information:
66
* good title

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -433,5 +433,5 @@ v4.0
433433
434434
> ### BREAKING CHANGES :warning:
435435
>
436-
> API changed significantly since v3, see [Migrating code to the new API](http://arduinojson.org/doc/migration/).
436+
> API changed significantly since v3, see [Migrating code to the new API](https://arduinojson.org/doc/migration/).
437437

README.md

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

3030
Works on
3131
--------
@@ -59,9 +59,9 @@ double latitude = root["data"][0];
5959
double longitude = root["data"][1];
6060
```
6161

62-
[See JsonParserExample.ino](http://arduinojson.org/example/parser/)
62+
[See JsonParserExample.ino](https://arduinojson.org/example/parser/)
6363

64-
Use [ArduinoJson Assistant](http://arduinojson.org/assistant/) to compute the buffer size.
64+
Use [ArduinoJson Assistant](https://arduinojson.org/assistant/) to compute the buffer size.
6565

6666
#### Encoding / Generating
6767

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

84-
[See JsonGeneratorExample.ino](http://arduinojson.org/example/generator/)
84+
[See JsonGeneratorExample.ino](https://arduinojson.org/example/generator/)
8585

86-
Use [ArduinoJson Assistant](http://arduinojson.org/assistant/) to compute the buffer size.
86+
Use [ArduinoJson Assistant](https://arduinojson.org/assistant/) to compute the buffer size.
8787

8888

8989
Documentation
9090
-------------
9191

92-
The documentation is available online in the [ArduinoJson Website](http://arduinojson.org/).
92+
The documentation is available online in the [ArduinoJson Website](https://arduinojson.org/).
9393

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

9696

9797
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](http://arduinojson.org/faq/)
10-
2. Search in the [API Reference](http://arduinojson.org/api/)
9+
1. Read the [FAQ](https://arduinojson.org/faq/)
10+
2. Search in the [API Reference](https://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).
13< 6D40 code>13

examples/JsonConfigFile/JsonConfigFile.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ void loadConfiguration(const char *filename, Config &config) {
3131

3232
// Allocate the memory pool on the stack.
3333
// Don't forget to change the capacity to match your JSON document.
34-
// Use https://arduinojson.org/assistant/ to compute the capacity.
34+
// Use arduinojson.org/assistant to compute the capacity.
3535
StaticJsonBuffer<512> jsonBuffer;
3636

3737
// Parse the root object

examples/JsonGeneratorExample/JsonGeneratorExample.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ void setup() {
1515
//
1616
// Inside the brackets, 200 is the size of the pool in bytes.
1717
// Don't forget to change this value to match your JSON document.
18-
// See https://arduinojson.org/assistant/
18+
// Use arduinojson.org/assistant to compute the capacity.
1919
StaticJsonBuffer<200> jsonBuffer;
2020

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

examples/JsonHttpClient/JsonHttpClient.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ void setup() {
7171
}
7272

7373
// Allocate JsonBuffer
74-
// (see https://arduinojson.org/assistant/ to compute the capacity)
74+
// Use arduinojson.org/assistant to compute the capacity.
7575
const size_t capacity = JSON_OBJECT_SIZE(3) + JSON_ARRAY_SIZE(2) + 60;
7676
DynamicJsonBuffer jsonBuffer(capacity);
7777

examples/JsonParserExample/JsonParserExample.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ void setup() {
1515
//
1616
// Inside the brackets, 200 is the size of the pool in bytes.
1717
// Don't forget to change this value to match your JSON document.
18-
// See https://arduinojson.org/assistant/
18+
// Use arduinojson.org/assistant to compute the capacity.
1919
StaticJsonBuffer<200> jsonBuffer;
2020

2121
// 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
@@ -52,7 +52,7 @@ void loop() {
5252
while (client.available()) client.read();
5353

5454
// Allocate JsonBuffer
55-
// Use http://arduinojson.org/assistant/ to compute the right capacity
55+
// Use arduinojson.org/assistant to compute the capacity.
5656
StaticJsonBuffer<500> jsonBuffer;
5757

5858
// Create the root object

examples/JsonUdpBeacon/JsonUdpBeacon.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ void setup() {
4444

4545
void loop() {
4646
// Allocate JsonBuffer
47-
// Use http://arduinojson.org/assistant/ to compute the right capacity.
47+
// Use arduinojson.org/assistant to compute the capacity.
4848
StaticJsonBuffer<500> jsonBuffer;
4949

5050
// Create the root object

0 commit comments

Comments
 (0)
0