2021-03-29 17:14:01 +02:00
|
|
|
// ArduinoJson - https://arduinojson.org
|
2023-02-16 11:45:01 +01:00
|
|
|
// Copyright © 2014-2023, Benoit BLANCHON
|
2016-06-22 21:41:19 +02:00
|
|
|
// MIT License
|
|
|
|
|
2016-06-23 21:27:24 +02:00
|
|
|
#pragma once
|
|
|
|
|
2023-02-10 09:36:18 +01:00
|
|
|
#if __cplusplus < 201103L && (!defined(_MSC_VER) || _MSC_VER < 1910)
|
|
|
|
# error ArduinoJson requires C++11 or newer. Configure your compiler for C++11 or downgrade ArduinoJson to 6.20.
|
|
|
|
#endif
|
|
|
|
|
2020-03-20 17:22:34 +01:00
|
|
|
#include "ArduinoJson/Configuration.hpp"
|
|
|
|
|
2021-12-26 18:42:54 +01:00
|
|
|
// Include Arduino.h before stdlib.h to avoid conflict with atexit()
|
|
|
|
// https://github.com/bblanchon/ArduinoJson/pull/1693#issuecomment-1001060240
|
|
|
|
#if ARDUINOJSON_ENABLE_ARDUINO_STRING || ARDUINOJSON_ENABLE_ARDUINO_STREAM || \
|
|
|
|
ARDUINOJSON_ENABLE_ARDUINO_PRINT || ARDUINOJSON_ENABLE_PROGMEM
|
|
|
|
# include <Arduino.h>
|
|
|
|
#endif
|
|
|
|
|
2020-03-25 08:37:57 +01:00
|
|
|
#if !ARDUINOJSON_DEBUG
|
2021-06-16 21:08:01 +02:00
|
|
|
# ifdef __clang__
|
|
|
|
# pragma clang system_header
|
|
|
|
# elif defined __GNUC__
|
|
|
|
# pragma GCC system_header
|
|
|
|
# endif
|
2019-03-05 09:19:22 +01:00
|
|
|
#endif
|
2019-03-01 17:31:55 +01:00
|
|
|
|
2022-12-19 12:10:58 +01:00
|
|
|
#include "ArduinoJson/Array/JsonArray.hpp"
|
2022-12-19 12:20:05 +01:00
|
|
|
#include "ArduinoJson/Object/JsonObject.hpp"
|
2022-12-19 12:05:08 +01:00
|
|
|
#include "ArduinoJson/Variant/JsonVariantConst.hpp"
|
2018-07-02 09:35:21 +02:00
|
|
|
|
2018-11-30 17:53:54 +01:00
|
|
|
#include "ArduinoJson/Document/DynamicJsonDocument.hpp"
|
2018-11-16 10:26:59 +01:00
|
|
|
|
2019-01-29 14:09:09 +01:00
|
|
|
#include "ArduinoJson/Array/ElementProxy.hpp"
|
2022-12-19 12:10:58 +01:00
|
|
|
#include "ArduinoJson/Array/JsonArrayImpl.hpp"
|
2019-02-15 15:33:04 +01:00
|
|
|
#include "ArduinoJson/Array/Utilities.hpp"
|
2018-12-07 09:16:58 +01:00
|
|
|
#include "ArduinoJson/Collection/CollectionImpl.hpp"
|
2022-12-19 12:20:05 +01:00
|
|
|
#include "ArduinoJson/Object/JsonObjectImpl.hpp"
|
2019-01-29 14:09:09 +01:00
|
|
|
#include "ArduinoJson/Object/MemberProxy.hpp"
|
2021-03-20 14:52:47 +01:00
|
|
|
#include "ArduinoJson/Variant/ConverterImpl.hpp"
|
2020-06-13 15:42:04 +02:00
|
|
|
#include "ArduinoJson/Variant/VariantCompare.hpp"
|
2018-11-30 17:53:54 +01:00
|
|
|
#include "ArduinoJson/Variant/VariantImpl.hpp"
|
2018-07-02 09:35:21 +02:00
|
|
|
|
2018-05-29 08:31:17 +02:00
|
|
|
#include "ArduinoJson/Json/JsonDeserializer.hpp"
|
|
|
|
#include "ArduinoJson/Json/JsonSerializer.hpp"
|
|
|
|
#include "ArduinoJson/Json/PrettyJsonSerializer.hpp"
|
|
|
|
#include "ArduinoJson/MsgPack/MsgPackDeserializer.hpp"
|
|
|
|
#include "ArduinoJson/MsgPack/MsgPackSerializer.hpp"
|
2018-10-02 16:54:05 +02:00
|
|
|
|
2019-02-27 15:57:38 +01:00
|
|
|
#include "ArduinoJson/compatibility.hpp"
|