Added "https://" prefix to all URLs so they are clickable in VS Code

This commit is contained in:
Benoit Blanchon
2021-03-29 17:14:01 +02:00
parent c81e8fc93a
commit d5d2209d09
321 changed files with 334 additions and 334 deletions

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
# ArduinoJson - arduinojson.org # ArduinoJson - https://arduinojson.org
# Copyright Benoit Blanchon 2014-2021 # Copyright Benoit Blanchon 2014-2021
# MIT License # MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License
// //
@ -44,7 +44,7 @@ void loadConfiguration(const char *filename, Config &config) {
// Allocate a temporary JsonDocument // Allocate a temporary JsonDocument
// Don't forget to change the capacity to match your requirements. // Don't forget to change the capacity to match your requirements.
// Use arduinojson.org/v6/assistant to compute the capacity. // Use https://arduinojson.org/v6/assistant to compute the capacity.
StaticJsonDocument<512> doc; StaticJsonDocument<512> doc;
// Deserialize the JSON document // Deserialize the JSON document
@ -76,7 +76,7 @@ void saveConfiguration(const char *filename, const Config &config) {
// Allocate a temporary JsonDocument // Allocate a temporary JsonDocument
// Don't forget to change the capacity to match your requirements. // Don't forget to change the capacity to match your requirements.
// Use arduinojson.org/assistant to compute the capacity. // Use https://arduinojson.org/assistant to compute the capacity.
StaticJsonDocument<256> doc; StaticJsonDocument<256> doc;
// Set the values in the document // Set the values in the document

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License
// //

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License
// //
@ -17,7 +17,7 @@ void setup() {
// //
// Inside the brackets, 200 is the RAM allocated to this document. // Inside the brackets, 200 is the RAM allocated to this document.
// Don't forget to change this value to match your requirement. // Don't forget to change this value to match your requirement.
// Use arduinojson.org/v6/assistant to compute the capacity. // Use https://arduinojson.org/v6/assistant to compute the capacity.
StaticJsonDocument<200> doc; StaticJsonDocument<200> doc;
// StaticJsonObject allocates memory on the stack, it can be // StaticJsonObject allocates memory on the stack, it can be

View File

@ -1,11 +1,11 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License
// //
// This example shows how to parse a JSON document in an HTTP response. // This example shows how to parse a JSON document in an HTTP response.
// It uses the Ethernet library, but can be easily adapted for Wifi. // It uses the Ethernet library, but can be easily adapted for Wifi.
// //
// It performs a GET resquest on arduinojson.org/example.json // It performs a GET resquest on https://arduinojson.org/example.json
// Here is the expected response: // Here is the expected response:
// { // {
// "sensor": "gps", // "sensor": "gps",
@ -77,7 +77,7 @@ void setup() {
} }
// Allocate the JSON document // Allocate the JSON document
// Use arduinojson.org/v6/assistant to compute the capacity. // Use https://arduinojson.org/v6/assistant to compute the capacity.
const size_t capacity = JSON_OBJECT_SIZE(3) + JSON_ARRAY_SIZE(2) + 60; const size_t capacity = JSON_OBJECT_SIZE(3) + JSON_ARRAY_SIZE(2) + 60;
DynamicJsonDocument doc(capacity); DynamicJsonDocument doc(capacity);

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License
// //
@ -17,7 +17,7 @@ void setup() {
// //
// Inside the brackets, 200 is the capacity of the memory pool in bytes. // Inside the brackets, 200 is the capacity of the memory pool in bytes.
// Don't forget to change this value to match your JSON document. // Don't forget to change this value to match your JSON document.
// Use arduinojson.org/v6/assistant to compute the capacity. // Use https://arduinojson.org/v6/assistant to compute the capacity.
StaticJsonDocument<200> doc; StaticJsonDocument<200> doc;
// StaticJsonDocument<N> allocates memory on the stack, it can be // StaticJsonDocument<N> allocates memory on the stack, it can be

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License
// //
@ -55,7 +55,7 @@ void loop() {
while (client.available()) client.read(); while (client.available()) client.read();
// Allocate a temporary JsonDocument // Allocate a temporary JsonDocument
// Use arduinojson.org/v6/assistant to compute the capacity. // Use https://arduinojson.org/v6/assistant to compute the capacity.
StaticJsonDocument<500> doc; StaticJsonDocument<500> doc;
// Create the "analog" array // Create the "analog" array

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License
// //
@ -46,7 +46,7 @@ void setup() {
void loop() { void loop() {
// Allocate a temporary JsonDocument // Allocate a temporary JsonDocument
// Use arduinojson.org/v6/assistant to compute the capacity. // Use https://arduinojson.org/v6/assistant to compute the capacity.
StaticJsonDocument<500> doc; StaticJsonDocument<500> doc;
// Create the "analog" array // Create the "analog" array

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License
// //
@ -18,7 +18,7 @@ void setup() {
// //
// Inside the brackets, 200 is the capacity of the memory pool in bytes. // Inside the brackets, 200 is the capacity of the memory pool in bytes.
// Don't forget to change this value to match your JSON document. // Don't forget to change this value to match your JSON document.
// Use arduinojson.org/v6/assistant to compute the capacity. // Use https://arduinojson.org/v6/assistant to compute the capacity.
StaticJsonDocument<200> doc; StaticJsonDocument<200> doc;
// StaticJsonObject allocates memory on the stack, it can be // StaticJsonObject allocates memory on the stack, it can be

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License
// //

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License
// //

View File

@ -1,4 +1,4 @@
# ArduinoJson - arduinojson.org # ArduinoJson - https://arduinojson.org
# Copyright Benoit Blanchon 2014-2021 # Copyright Benoit Blanchon 2014-2021
# MIT License # MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License
// //
@ -12,7 +12,7 @@ int main() {
// //
// Inside the brackets, 200 is the RAM allocated to this document. // Inside the brackets, 200 is the RAM allocated to this document.
// Don't forget to change this value to match your requirement. // Don't forget to change this value to match your requirement.
// Use arduinojson.org/v6/assistant to compute the capacity. // Use https://arduinojson.org/v6/assistant to compute the capacity.
StaticJsonDocument<200> doc; StaticJsonDocument<200> doc;
// StaticJsonObject allocates memory on the stack, it can be // StaticJsonObject allocates memory on the stack, it can be

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License
// //
@ -12,7 +12,7 @@ int main() {
// //
// Inside the brackets, 200 is the capacity of the memory pool in bytes. // Inside the brackets, 200 is the capacity of the memory pool in bytes.
// Don't forget to change this value to match your JSON document. // Don't forget to change this value to match your JSON document.
// Use arduinojson.org/v6/assistant to compute the capacity. // Use https://arduinojson.org/v6/assistant to compute the capacity.
StaticJsonDocument<300> doc; StaticJsonDocument<300> doc;
// StaticJsonDocument<N> allocates memory on the stack, it can be // StaticJsonDocument<N> allocates memory on the stack, it can be

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License
// //
@ -12,7 +12,7 @@ int main() {
// //
// Inside the brackets, 300 is the size of the memory pool in bytes. // Inside the brackets, 300 is the size of the memory pool in bytes.
// Don't forget to change this value to match your JSON document. // Don't forget to change this value to match your JSON document.
// Use arduinojson.org/assistant to compute the capacity. // Use https://arduinojson.org/assistant to compute the capacity.
StaticJsonDocument<300> doc; StaticJsonDocument<300> doc;
// StaticJsonObject allocates memory on the stack, it can be // StaticJsonObject allocates memory on the stack, it can be

View File

@ -1,4 +1,4 @@
# ArduinoJson - arduinojson.org # ArduinoJson - https://arduinojson.org
# Copyright Benoit Blanchon 2014-2021 # Copyright Benoit Blanchon 2014-2021
# MIT License # MIT License

View File

@ -1,4 +1,4 @@
# ArduinoJson - arduinojson.org # ArduinoJson - https://arduinojson.org
# Copyright Benoit Blanchon 2014-2021 # Copyright Benoit Blanchon 2014-2021
# MIT License # MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
# ArduinoJson - arduinojson.org # ArduinoJson - https://arduinojson.org
# Copyright Benoit Blanchon 2014-2021 # Copyright Benoit Blanchon 2014-2021
# MIT License # MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
# ArduinoJson - arduinojson.org # ArduinoJson - https://arduinojson.org
# Copyright Benoit Blanchon 2014-2021 # Copyright Benoit Blanchon 2014-2021
# MIT License # MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
# ArduinoJson - arduinojson.org # ArduinoJson - https://arduinojson.org
# Copyright Benoit Blanchon 2014-2021 # Copyright Benoit Blanchon 2014-2021
# MIT License # MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
# ArduinoJson - arduinojson.org # ArduinoJson - https://arduinojson.org
# Copyright Benoit Blanchon 2014-2021 # Copyright Benoit Blanchon 2014-2021
# MIT License # MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
# ArduinoJson - arduinojson.org # ArduinoJson - https://arduinojson.org
# Copyright Benoit Blanchon 2014-2021 # Copyright Benoit Blanchon 2014-2021
# MIT License # MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

View File

@ -1,4 +1,4 @@
# ArduinoJson - arduinojson.org # ArduinoJson - https://arduinojson.org
# Copyright Benoit Blanchon 2014-2021 # Copyright Benoit Blanchon 2014-2021
# MIT License # MIT License

View File

@ -1,4 +1,4 @@
// ArduinoJson - arduinojson.org // ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021 // Copyright Benoit Blanchon 2014-2021
// MIT License // MIT License

Some files were not shown because too many files have changed in this diff Show More