2017-11-07 20:42:50 +01:00
|
|
|
// ArduinoJson - arduinojson.org
|
2019-02-15 13:31:46 +01:00
|
|
|
// Copyright Benoit Blanchon 2014-2019
|
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
|