2014-07-03 13:58:08 +02:00
|
|
|
/*
|
|
|
|
|
* Arduino JSON library
|
|
|
|
|
* Benoit Blanchon 2014 - MIT License
|
2014-09-27 21:24:29 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "JsonArray.h"
|
|
|
|
|
#include "JsonObject.h"
|
|
|
|
|
#include "JsonValue.h"
|
|
|
|
|
|
|
|
|
|
using namespace ArduinoJson::Parser;
|
|
|
|
|
|
|
|
|
|
DEPRECATED JsonArray JsonObject::getArray(const char* key)
|
|
|
|
|
{
|
|
|
|
|
return operator[](key);
|
|
|
|
|
}
|