2014-07-03 13:58:08 +02:00
|
|
|
/*
|
|
|
|
* Arduino JSON library
|
|
|
|
* Benoit Blanchon 2014 - MIT License
|
2014-01-11 16:41:18 +01:00
|
|
|
*/
|
2014-01-11 15:05:35 +01:00
|
|
|
|
2014-07-16 13:26:11 +02:00
|
|
|
#include "JsonArray.h"
|
2014-07-18 16:46:01 +02:00
|
|
|
#include "JsonObject.h"
|
2014-07-16 13:26:11 +02:00
|
|
|
#include "JsonValue.h"
|
2014-01-11 15:05:35 +01:00
|
|
|
|
2014-07-03 14:00:51 +02:00
|
|
|
using namespace ArduinoJson::Parser;
|
2014-01-11 15:05:35 +01:00
|
|
|
|
2014-07-18 16:46:01 +02:00
|
|
|
DEPRECATED JsonArray JsonObject::getArray(const char* key)
|
2014-01-11 15:15:52 +01:00
|
|
|
{
|
2014-07-19 14:41:29 +02:00
|
|
|
return operator[](key);
|
2014-01-11 15:05:35 +01:00
|
|
|
}
|