mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-14 11:06:35 +02:00
Renamed all .h files into .hpp (so that Sublime Text selects C++ syntax)
This commit is contained in:
@ -1,15 +0,0 @@
|
|||||||
/*
|
|
||||||
* malloc-free JSON parser for Arduino
|
|
||||||
* Benoit Blanchon 2014 - MIT License
|
|
||||||
*/
|
|
||||||
|
|
||||||
// This file is here to help the Arduino IDE find the .cpp files
|
|
||||||
|
|
||||||
#include "JsonGenerator/EscapedString.cpp"
|
|
||||||
#include "JsonGenerator/IndentedPrint.cpp"
|
|
||||||
#include "JsonGenerator/JsonArrayBase.cpp"
|
|
||||||
#include "JsonGenerator/JsonObjectBase.cpp"
|
|
||||||
#include "JsonGenerator/JsonValue.cpp"
|
|
||||||
#include "JsonGenerator/JsonPrettyPrint.cpp"
|
|
||||||
#include "JsonGenerator/JsonPrintable.cpp"
|
|
||||||
#include "JsonGenerator/StringBuilder.cpp"
|
|
@ -1,7 +0,0 @@
|
|||||||
/*
|
|
||||||
* malloc-free JSON parser for Arduino
|
|
||||||
* Benoit Blanchon 2014 - MIT License
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "JsonGenerator/JsonArray.h"
|
|
||||||
#include "JsonGenerator/JsonObject.h"
|
|
@ -1,13 +0,0 @@
|
|||||||
/*
|
|
||||||
* Arduino JSON library
|
|
||||||
* Benoit Blanchon 2014 - MIT License
|
|
||||||
*/
|
|
||||||
|
|
||||||
// This file is here to help the Arduino IDE find the .cpp files
|
|
||||||
|
|
||||||
#include "JsonParser/JsonArray.cpp"
|
|
||||||
#include "JsonParser/JsonObject.cpp"
|
|
||||||
#include "JsonParser/JsonParserBase.cpp"
|
|
||||||
#include "JsonParser/JsonValue.cpp"
|
|
||||||
#include "JsonParser/JsonToken.cpp"
|
|
||||||
#include "JsonParser/jsmn.cpp"
|
|
@ -1,6 +0,0 @@
|
|||||||
/*
|
|
||||||
* malloc-free JSON parser for Arduino
|
|
||||||
* Benoit Blanchon 2014 - MIT License
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "JsonParser/JsonParser.h"
|
|
@ -1,6 +1,6 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "ArduinoJson/Internals/JsonWriter.h"
|
#include "ArduinoJson/Internals/JsonWriter.hpp"
|
||||||
|
|
||||||
namespace ArduinoJson
|
namespace ArduinoJson
|
||||||
{
|
{
|
@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "../Arduino/Print.h"
|
#include "../Arduino/Print.hpp"
|
||||||
|
|
||||||
namespace ArduinoJson
|
namespace ArduinoJson
|
||||||
{
|
{
|
@ -1,6 +1,6 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "JsonNode.h"
|
#include "JsonNode.hpp"
|
||||||
|
|
||||||
namespace ArduinoJson
|
namespace ArduinoJson
|
||||||
{
|
{
|
@ -1,6 +1,6 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "JsonNode.h"
|
#include "JsonNode.hpp"
|
||||||
|
|
||||||
namespace ArduinoJson
|
namespace ArduinoJson
|
||||||
{
|
{
|
@ -1,6 +1,6 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "JsonNode.h"
|
#include "JsonNode.hpp"
|
||||||
|
|
||||||
namespace ArduinoJson
|
namespace ArduinoJson
|
||||||
{
|
{
|
@ -1,6 +1,6 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "../Arduino/Print.h"
|
#include "../Arduino/Print.hpp"
|
||||||
|
|
||||||
namespace ArduinoJson
|
namespace ArduinoJson
|
||||||
{
|
{
|
@ -1,7 +1,7 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "JsonWriter.h"
|
#include "JsonWriter.hpp"
|
||||||
#include "IndentedPrint.h"
|
#include "IndentedPrint.hpp"
|
||||||
|
|
||||||
namespace ArduinoJson
|
namespace ArduinoJson
|
||||||
{
|
{
|
@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "../Arduino/Print.h"
|
#include "../Arduino/Print.hpp"
|
||||||
|
|
||||||
namespace ArduinoJson
|
namespace ArduinoJson
|
||||||
{
|
{
|
@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "../Arduino/Print.h"
|
#include "../Arduino/Print.hpp"
|
||||||
|
|
||||||
namespace ArduinoJson
|
namespace ArduinoJson
|
||||||
{
|
{
|
@ -1,6 +1,6 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "JsonContainer.h"
|
#include "JsonContainer.hpp"
|
||||||
|
|
||||||
namespace ArduinoJson
|
namespace ArduinoJson
|
||||||
{
|
{
|
@ -1,7 +1,7 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "JsonArray.h"
|
#include "JsonArray.hpp"
|
||||||
#include "JsonObject.h"
|
#include "JsonObject.hpp"
|
||||||
|
|
||||||
namespace ArduinoJson
|
namespace ArduinoJson
|
||||||
{
|
{
|
@ -1,10 +1,10 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "Arduino/Printable.h"
|
#include "Arduino/Printable.hpp"
|
||||||
#include "Internals/JsonNodeIterator.h"
|
#include "Internals/JsonNodeIterator.hpp"
|
||||||
#include "Internals/JsonNode.h"
|
#include "Internals/JsonNode.hpp"
|
||||||
#include "Internals/IndentedPrint.h"
|
#include "Internals/IndentedPrint.hpp"
|
||||||
#include "Internals/JsonNodeWrapper.h"
|
#include "Internals/JsonNodeWrapper.hpp"
|
||||||
|
|
||||||
namespace ArduinoJson
|
namespace ArduinoJson
|
||||||
{
|
{
|
@ -1,6 +1,6 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "JsonContainer.h"
|
#include "JsonContainer.hpp"
|
||||||
|
|
||||||
namespace ArduinoJson
|
namespace ArduinoJson
|
||||||
{
|
{
|
@ -1,6 +1,6 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "Internals/JsonNodeWrapper.h"
|
#include "Internals/JsonNodeWrapper.hpp"
|
||||||
|
|
||||||
namespace ArduinoJson
|
namespace ArduinoJson
|
||||||
{
|
{
|
@ -1,7 +1,7 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "JsonBuffer.h"
|
#include "JsonBuffer.hpp"
|
||||||
#include "JsonObject.h"
|
#include "JsonObject.hpp"
|
||||||
|
|
||||||
namespace ArduinoJson
|
namespace ArduinoJson
|
||||||
{
|
{
|
@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
#ifndef ARDUINO
|
#ifndef ARDUINO
|
||||||
|
|
||||||
#include "ArduinoJson/Arduino/Print.h"
|
#include "ArduinoJson/Arduino/Print.hpp"
|
||||||
#include <cstdio>
|
#include <cstdio>
|
||||||
|
|
||||||
size_t Print::print(const char s[])
|
size_t Print::print(const char s[])
|
||||||
|
@ -1 +1 @@
|
|||||||
#include "ArduinoJson/Internals/CompactJsonWriter.h"
|
#include "ArduinoJson/Internals/CompactJsonWriter.hpp"
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
* Benoit Blanchon 2014 - MIT License
|
* Benoit Blanchon 2014 - MIT License
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "ArduinoJson/Internals/QuotedString.h"
|
#include "ArduinoJson/Internals/QuotedString.hpp"
|
||||||
|
|
||||||
using namespace ArduinoJson::Internals;
|
using namespace ArduinoJson::Internals;
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#include "ArduinoJson/Internals/IndentedPrint.h"
|
#include "ArduinoJson/Internals/IndentedPrint.hpp"
|
||||||
|
|
||||||
using namespace ArduinoJson::Internals;
|
using namespace ArduinoJson::Internals;
|
||||||
|
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
#include "ArduinoJson/Internals/JsonNode.h"
|
#include "ArduinoJson/Internals/JsonNode.hpp"
|
||||||
|
|
||||||
#include "ArduinoJson/Internals/JsonWriter.h"
|
#include "ArduinoJson/Internals/JsonWriter.hpp"
|
||||||
#include "ArduinoJson/JsonArray.h"
|
#include "ArduinoJson/JsonArray.hpp"
|
||||||
#include "ArduinoJson/JsonObject.h"
|
#include "ArduinoJson/JsonObject.hpp"
|
||||||
#include "ArduinoJson/JsonBuffer.h"
|
#include "ArduinoJson/JsonBuffer.hpp"
|
||||||
|
|
||||||
using namespace ArduinoJson::Internals;
|
using namespace ArduinoJson::Internals;
|
||||||
|
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
#include "ArduinoJson/Internals/JsonParser.h"
|
#include "ArduinoJson/Internals/JsonParser.hpp"
|
||||||
|
|
||||||
#include <stdlib.h> // for strtol, strtod
|
#include <stdlib.h> // for strtol, strtod
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
|
||||||
#include "ArduinoJson/JsonBuffer.h"
|
#include "ArduinoJson/JsonBuffer.hpp"
|
||||||
#include "ArduinoJson/Internals/QuotedString.h"
|
#include "ArduinoJson/Internals/QuotedString.hpp"
|
||||||
|
|
||||||
using namespace ArduinoJson::Internals;
|
using namespace ArduinoJson::Internals;
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#include "ArduinoJson/Internals/JsonWriter.h"
|
#include "ArduinoJson/Internals/JsonWriter.hpp"
|
||||||
#include "ArduinoJson/Internals/QuotedString.h"
|
#include "ArduinoJson/Internals/QuotedString.hpp"
|
||||||
|
|
||||||
using namespace ArduinoJson::Internals;
|
using namespace ArduinoJson::Internals;
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
#include "ArduinoJson/Internals/PrettyJsonWriter.h"
|
#include "ArduinoJson/Internals/PrettyJsonWriter.hpp"
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
* Benoit Blanchon 2014 - MIT License
|
* Benoit Blanchon 2014 - MIT License
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "ArduinoJson/Internals/StringBuilder.h"
|
#include "ArduinoJson/Internals/StringBuilder.hpp"
|
||||||
|
|
||||||
using namespace ArduinoJson::Internals;
|
using namespace ArduinoJson::Internals;
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#include "ArduinoJson/JsonArray.h"
|
#include "ArduinoJson/JsonArray.hpp"
|
||||||
#include "ArduinoJson/JsonObject.h"
|
#include "ArduinoJson/JsonObject.hpp"
|
||||||
#include "ArduinoJson/JsonValue.h"
|
#include "ArduinoJson/JsonValue.hpp"
|
||||||
|
|
||||||
using namespace ArduinoJson;
|
using namespace ArduinoJson;
|
||||||
using namespace ArduinoJson::Internals;
|
using namespace ArduinoJson::Internals;
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
#include "ArduinoJson/JsonBuffer.h"
|
#include "ArduinoJson/JsonBuffer.hpp"
|
||||||
|
|
||||||
#include <new>
|
#include <new>
|
||||||
|
|
||||||
#include "ArduinoJson/JsonValue.h"
|
#include "ArduinoJson/JsonValue.hpp"
|
||||||
#include "ArduinoJson/Internals/JsonParser.h"
|
#include "ArduinoJson/Internals/JsonParser.hpp"
|
||||||
#include "ArduinoJson/Internals/JsonNode.h"
|
#include "ArduinoJson/Internals/JsonNode.hpp"
|
||||||
|
|
||||||
using namespace ArduinoJson;
|
using namespace ArduinoJson;
|
||||||
using namespace ArduinoJson::Internals;
|
using namespace ArduinoJson::Internals;
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
#include "ArduinoJson/JsonContainer.h"
|
#include "ArduinoJson/JsonContainer.hpp"
|
||||||
|
|
||||||
#include "ArduinoJson/JsonBuffer.h"
|
#include "ArduinoJson/JsonBuffer.hpp"
|
||||||
#include "ArduinoJson/Internals/StringBuilder.h"
|
#include "ArduinoJson/Internals/StringBuilder.hpp"
|
||||||
#include "ArduinoJson/Internals/CompactJsonWriter.h"
|
#include "ArduinoJson/Internals/CompactJsonWriter.hpp"
|
||||||
#include "ArduinoJson/Internals/PrettyJsonWriter.h"
|
#include "ArduinoJson/Internals/PrettyJsonWriter.hpp"
|
||||||
|
|
||||||
using namespace ArduinoJson;
|
using namespace ArduinoJson;
|
||||||
using namespace ArduinoJson::Internals;
|
using namespace ArduinoJson::Internals;
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
#include "ArduinoJson/JsonObject.h"
|
#include "ArduinoJson/JsonObject.hpp"
|
||||||
|
|
||||||
#include <string.h> // for strcmp
|
#include <string.h> // for strcmp
|
||||||
|
|
||||||
#include "ArduinoJson/JsonBuffer.h"
|
#include "ArduinoJson/JsonBuffer.hpp"
|
||||||
#include "ArduinoJson/JsonValue.h"
|
#include "ArduinoJson/JsonValue.hpp"
|
||||||
#include "ArduinoJson/Internals/JsonNode.h"
|
#include "ArduinoJson/Internals/JsonNode.hpp"
|
||||||
#include "ArduinoJson/Internals/StringBuilder.h"
|
#include "ArduinoJson/Internals/StringBuilder.hpp"
|
||||||
|
|
||||||
using namespace ArduinoJson;
|
using namespace ArduinoJson;
|
||||||
using namespace ArduinoJson::Internals;
|
using namespace ArduinoJson::Internals;
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
#include "ArduinoJson/JsonValue.h"
|
#include "ArduinoJson/JsonValue.hpp"
|
||||||
|
|
||||||
#include "ArduinoJson/JsonArray.h"
|
#include "ArduinoJson/JsonArray.hpp"
|
||||||
#include "ArduinoJson/JsonObject.h"
|
#include "ArduinoJson/JsonObject.hpp"
|
||||||
#include "ArduinoJson/Internals/JsonNode.h"
|
#include "ArduinoJson/Internals/JsonNode.hpp"
|
||||||
|
|
||||||
using namespace ArduinoJson;
|
using namespace ArduinoJson;
|
||||||
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
#include <gtest/gtest.h>
|
#include <gtest/gtest.h>
|
||||||
#include <ArduinoJson/JsonArray.h>
|
#include <ArduinoJson/JsonArray.hpp>
|
||||||
#include <ArduinoJson/JsonObject.h>
|
#include <ArduinoJson/JsonObject.hpp>
|
||||||
#include <ArduinoJson/JsonValue.h>
|
#include <ArduinoJson/JsonValue.hpp>
|
||||||
#include <ArduinoJson/StaticJsonBuffer.h>
|
#include <ArduinoJson/StaticJsonBuffer.hpp>
|
||||||
|
|
||||||
using namespace ArduinoJson;
|
using namespace ArduinoJson;
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#include <gtest/gtest.h>
|
#include <gtest/gtest.h>
|
||||||
#include <ArduinoJson/StaticJsonBuffer.h>
|
#include <ArduinoJson/StaticJsonBuffer.hpp>
|
||||||
#include <ArduinoJson/JsonValue.h>
|
#include <ArduinoJson/JsonValue.hpp>
|
||||||
|
|
||||||
using namespace ArduinoJson;
|
using namespace ArduinoJson;
|
||||||
|
|
||||||
|
@ -4,10 +4,10 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <gtest/gtest.h>
|
#include <gtest/gtest.h>
|
||||||
#include <ArduinoJson/JsonArray.h>
|
#include <ArduinoJson/JsonArray.hpp>
|
||||||
#include <ArduinoJson/JsonObject.h>
|
#include <ArduinoJson/JsonObject.hpp>
|
||||||
#include <ArduinoJson/JsonValue.h>
|
#include <ArduinoJson/JsonValue.hpp>
|
||||||
#include <ArduinoJson/StaticJsonBuffer.h>
|
#include <ArduinoJson/StaticJsonBuffer.hpp>
|
||||||
|
|
||||||
using namespace ArduinoJson;
|
using namespace ArduinoJson;
|
||||||
|
|
||||||
|
@ -4,9 +4,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <gtest/gtest.h>
|
#include <gtest/gtest.h>
|
||||||
#include <ArduinoJson/JsonArray.h>
|
#include <ArduinoJson/JsonArray.hpp>
|
||||||
#include <ArduinoJson/JsonObject.h>
|
#include <ArduinoJson/JsonObject.hpp>
|
||||||
#include <ArduinoJson/StaticJsonBuffer.h>
|
#include <ArduinoJson/StaticJsonBuffer.hpp>
|
||||||
|
|
||||||
using namespace ArduinoJson;
|
using namespace ArduinoJson;
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#include <gtest/gtest.h>
|
#include <gtest/gtest.h>
|
||||||
#include <ArduinoJson/StaticJsonBuffer.h>
|
#include <ArduinoJson/StaticJsonBuffer.hpp>
|
||||||
#include <ArduinoJson/JsonValue.h>
|
#include <ArduinoJson/JsonValue.hpp>
|
||||||
|
|
||||||
using namespace ArduinoJson;
|
using namespace ArduinoJson;
|
||||||
|
|
||||||
|
@ -4,9 +4,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <gtest/gtest.h>
|
#include <gtest/gtest.h>
|
||||||
#include <ArduinoJson/JsonObject.h>
|
#include <ArduinoJson/JsonObject.hpp>
|
||||||
#include <ArduinoJson/JsonValue.h>
|
#include <ArduinoJson/JsonValue.hpp>
|
||||||
#include <ArduinoJson/StaticJsonBuffer.h>
|
#include <ArduinoJson/StaticJsonBuffer.hpp>
|
||||||
|
|
||||||
using namespace ArduinoJson;
|
using namespace ArduinoJson;
|
||||||
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
#include <gtest/gtest.h>
|
#include <gtest/gtest.h>
|
||||||
#include <ArduinoJson/JsonArray.h>
|
#include <ArduinoJson/JsonArray.hpp>
|
||||||
#include <ArduinoJson/JsonObject.h>
|
#include <ArduinoJson/JsonObject.hpp>
|
||||||
#include <ArduinoJson/JsonValue.h>
|
#include <ArduinoJson/JsonValue.hpp>
|
||||||
#include <ArduinoJson/StaticJsonBuffer.h>
|
#include <ArduinoJson/StaticJsonBuffer.hpp>
|
||||||
|
|
||||||
using namespace ArduinoJson;
|
using namespace ArduinoJson;
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#include <gtest/gtest.h>
|
#include <gtest/gtest.h>
|
||||||
#include <ArduinoJson/StaticJsonBuffer.h>
|
#include <ArduinoJson/StaticJsonBuffer.hpp>
|
||||||
#include <ArduinoJson/JsonValue.h>
|
#include <ArduinoJson/JsonValue.hpp>
|
||||||
|
|
||||||
using namespace ArduinoJson;
|
using namespace ArduinoJson;
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#include <gtest/gtest.h>
|
#include <gtest/gtest.h>
|
||||||
#include <ArduinoJson/StaticJsonBuffer.h>
|
#include <ArduinoJson/StaticJsonBuffer.hpp>
|
||||||
#include <ArduinoJson/JsonValue.h>
|
#include <ArduinoJson/JsonValue.hpp>
|
||||||
|
|
||||||
using namespace ArduinoJson;
|
using namespace ArduinoJson;
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#include <gtest/gtest.h>
|
#include <gtest/gtest.h>
|
||||||
#include <ArduinoJson/Internals/QuotedString.h>
|
#include <ArduinoJson/Internals/QuotedString.hpp>
|
||||||
|
|
||||||
using namespace ArduinoJson::Internals;
|
using namespace ArduinoJson::Internals;
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#include <gtest/gtest.h>
|
#include <gtest/gtest.h>
|
||||||
|
|
||||||
#include <ArduinoJson/Internals/QuotedString.h>
|
#include <ArduinoJson/Internals/QuotedString.hpp>
|
||||||
#include <ArduinoJson/Internals/StringBuilder.h>
|
#include <ArduinoJson/Internals/StringBuilder.hpp>
|
||||||
|
|
||||||
using namespace ArduinoJson::Internals;
|
using namespace ArduinoJson::Internals;
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#include <gtest/gtest.h>
|
#include <gtest/gtest.h>
|
||||||
#include <ArduinoJson/StaticJsonBuffer.h>
|
#include <ArduinoJson/StaticJsonBuffer.hpp>
|
||||||
#include <ArduinoJson/JsonValue.h>
|
#include <ArduinoJson/JsonValue.hpp>
|
||||||
|
|
||||||
using namespace ArduinoJson;
|
using namespace ArduinoJson;
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#include <gtest/gtest.h>
|
#include <gtest/gtest.h>
|
||||||
#include <ArduinoJson/Internals/StringBuilder.h>
|
#include <ArduinoJson/Internals/StringBuilder.hpp>
|
||||||
|
|
||||||
using namespace ArduinoJson::Internals;
|
using namespace ArduinoJson::Internals;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user