Added a coupon code for the book

This commit is contained in:
Benoit Blanchon
2018-10-06 17:42:01 +02:00
parent ce607196d1
commit 3ca40db9f8
8 changed files with 24 additions and 24 deletions

View File

@ -133,12 +133,12 @@ void loop() {
// See also // See also
// -------- // --------
// //
// The website arduinojson.org contains the documentation for all the functions // https://arduinojson.org/ contains the documentation for all the functions
// used above. It also includes an FAQ that will help you solve any // used above. It also includes an FAQ that will help you solve any
// serialization or deserialization problem. // serialization or deserialization problem.
// Please check it out at: https://arduinojson.org/
// //
// The book "Mastering ArduinoJson" contains a case study of a project that has // The book "Mastering ArduinoJson" contains a case study of a project that has
// a complex configuration with nested members. // a complex configuration with nested members.
// Contrary to this example, the project in the book uses the SPIFFS filesystem. // Contrary to this example, the project in the book uses the SPIFFS filesystem.
// Please check it out at: https://arduinojson.org/book/ // Learn more at https://arduinojson.org/book/
// Use the coupon code TWENTY for a 20% discount ❤❤❤❤❤

View File

@ -70,12 +70,12 @@ void loop() {
// See also // See also
// -------- // --------
// //
// The website arduinojson.org contains the documentation for all the functions // https://arduinojson.org/ contains the documentation for all the functions
// used above. It also includes an FAQ that will help you solve any // used above. It also includes an FAQ that will help you solve any
// serialization problem. // serialization problem.
// Please check it out at: https://arduinojson.org/
// //
// The book "Mastering ArduinoJson" contains a tutorial on serialization. // The book "Mastering ArduinoJson" contains a tutorial on serialization.
// It begins with a simple example, like the one above, and then adds more // It begins with a simple example, like the one above, and then adds more
// features like serializing directly to a file or an HTTP request. // features like serializing directly to a file or an HTTP request.
// Please check it out at: https://arduinojson.org/book/ // Learn more at https://arduinojson.org/book/
// Use the coupon code TWENTY for a 20% discount ❤❤❤❤❤

View File

@ -100,13 +100,13 @@ void loop() {
// See also // See also
// -------- // --------
// //
// The website arduinojson.org contains the documentation for all the functions // https://arduinojson.org/ contains the documentation for all the functions
// used above. It also includes an FAQ that will help you solve any // used above. It also includes an FAQ that will help you solve any
// serialization problem. // serialization problem.
// Please check it out at: https://arduinojson.org/
// //
// The book "Mastering ArduinoJson" contains a tutorial on deserialization // The book "Mastering ArduinoJson" contains a tutorial on deserialization
// showing how to parse the response from Yahoo Weather. In the last chapter, // showing how to parse the response from Yahoo Weather. In the last chapter,
// it shows how to parse the huge documents from OpenWeatherMap // it shows how to parse the huge documents from OpenWeatherMap
// and Weather Underground. // and Weather Underground.
// Please check it out at: https://arduinojson.org/book/ // Learn more at https://arduinojson.org/book/
// Use the coupon code TWENTY for a 20% discount ❤❤❤❤❤

View File

@ -67,12 +67,12 @@ void loop() {
// See also // See also
// -------- // --------
// //
// The website arduinojson.org contains the documentation for all the functions // https://arduinojson.org/ contains the documentation for all the functions
// used above. It also includes an FAQ that will help you solve any // used above. It also includes an FAQ that will help you solve any
// deserialization problem. // deserialization problem.
// Please check it out at: https://arduinojson.org/
// //
// The book "Mastering ArduinoJson" contains a tutorial on deserialization. // The book "Mastering ArduinoJson" contains a tutorial on deserialization.
// It begins with a simple example, like the one above, and then adds more // It begins with a simple example, like the one above, and then adds more
// features like deserializing directly from a file or an HTTP request. // features like deserializing directly from a file or an HTTP request.
// Please check it out at: https://arduinojson.org/book/ // Learn more at https://arduinojson.org/book/
// Use the coupon code TWENTY for a 20% discount ❤❤❤❤❤

View File

@ -98,12 +98,12 @@ void loop() {
// See also // See also
// -------- // --------
// //
// The website arduinojson.org contains the documentation for all the functions // https://arduinojson.org/ contains the documentation for all the functions
// used above. It also includes an FAQ that will help you solve any // used above. It also includes an FAQ that will help you solve any
// serialization problem. // serialization problem.
// Please check it out at: https://arduinojson.org/
// //
// The book "Mastering ArduinoJson" contains a tutorial on serialization. // The book "Mastering ArduinoJson" contains a tutorial on serialization.
// It begins with a simple example, then adds more features like serializing // It begins with a simple example, then adds more features like serializing
// directly to a file or an HTTP client. // directly to a file or an HTTP client.
// Please check it out at: https://arduinojson.org/book/ // Learn more at https://arduinojson.org/book/
// Use the coupon code TWENTY for a 20% discount ❤❤❤❤❤

View File

@ -90,12 +90,12 @@ void loop() {
// See also // See also
// -------- // --------
// //
// The website arduinojson.org contains the documentation for all the functions // https://arduinojson.org/ contains the documentation for all the functions
// used above. It also includes an FAQ that will help you solve any // used above. It also includes an FAQ that will help you solve any
// serialization problem. // serialization problem.
// Please check it out at: https://arduinojson.org/
// //
// The book "Mastering ArduinoJson" contains a tutorial on serialization. // The book "Mastering ArduinoJson" contains a tutorial on serialization.
// It begins with a simple example, then adds more features like serializing // It begins with a simple example, then adds more features like serializing
// directly to a file or any stream. // directly to a file or any stream.
// Please check it out at: https://arduinojson.org/book/ // Learn more at https://arduinojson.org/book/
// Use the coupon code TWENTY for a 20% discount ❤❤❤❤❤

View File

@ -59,12 +59,12 @@ void loop() {
// See also // See also
// -------- // --------
// //
// The website arduinojson.org contains the documentation for all the functions // https://arduinojson.org/ contains the documentation for all the functions
// used above. It also includes an FAQ that will help you solve any memory // used above. It also includes an FAQ that will help you solve any memory
// problem. // problem.
// Please check it out at: https://arduinojson.org/
// //
// The book "Mastering ArduinoJson" contains a quick C++ course that explains // The book "Mastering ArduinoJson" contains a quick C++ course that explains
// how your microcontroller stores strings in memory. It also tells why you // how your microcontroller stores strings in memory. It also tells why you
// should not abuse Flash strings with ArduinoJson. // should not abuse Flash strings with ArduinoJson.
// Please check it out at: https://arduinojson.org/book/ // Learn more at https://arduinojson.org/book/
// Use the coupon code TWENTY for a 20% discount ❤❤❤❤❤

View File

@ -64,11 +64,11 @@ void loop() {
// See also // See also
// -------- // --------
// //
// The website arduinojson.org contains the documentation for all the functions // https://arduinojson.org/ contains the documentation for all the functions
// used above. It also includes an FAQ that will help you solve any problem. // used above. It also includes an FAQ that will help you solve any problem.
// Please check it out at: https://arduinojson.org/
// //
// The book "Mastering ArduinoJson" contains a quick C++ course that explains // The book "Mastering ArduinoJson" contains a quick C++ course that explains
// how your microcontroller stores strings in memory. On several occasions, it // how your microcontroller stores strings in memory. On several occasions, it
// shows how you can avoid String in your program. // shows how you can avoid String in your program.
// Please check it out at: https://arduinojson.org/book/ // Learn more at https://arduinojson.org/book/
// Use the coupon code TWENTY for a 20% discount ❤❤❤❤❤