2021-03-29 17:14:01 +02:00
|
|
|
// ArduinoJson - https://arduinojson.org
|
2021-01-25 09:14:15 +01:00
|
|
|
// Copyright Benoit Blanchon 2014-2021
|
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
|
|
|
|
|
2016-06-22 21:41:19 +02: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
|