2021-03-29 17:14:01 +02:00
|
|
|
// ArduinoJson - https://arduinojson.org
|
2022-01-01 10:00:54 +01:00
|
|
|
// Copyright © 2014-2022, Benoit BLANCHON
|
2014-11-11 16:54:46 +01:00
|
|
|
// MIT License
|
|
|
|
|
2017-03-25 21:56:37 +01:00
|
|
|
#pragma once
|
|
|
|
|
2017-12-03 13:49:51 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
2022-01-01 10:00:54 +01:00
|
|
|
# include "ArduinoJson.hpp"
|
2017-03-25 21:56:37 +01:00
|
|
|
|
2014-11-11 16:54:46 +01:00
|
|
|
using namespace ArduinoJson;
|
2017-12-03 13:49:51 +01:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#error ArduinoJson requires a C++ compiler, please change file extension to .cc or .cpp
|
|
|
|
|
|
|
|
#endif
|