mirror of
				https://github.com/bblanchon/ArduinoJson.git
				synced 2025-11-04 00:21:36 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			277 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			277 B
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
* Arduino JSON library
 | 
						|
* Benoit Blanchon 2014 - MIT License
 | 
						|
*/
 | 
						|
 | 
						|
#include "JsonArray.h"
 | 
						|
#include "JsonObject.h"
 | 
						|
#include "JsonValue.h"
 | 
						|
 | 
						|
using namespace ArduinoJson::Parser;
 | 
						|
 | 
						|
DEPRECATED JsonArray JsonObject::getArray(const char* key)
 | 
						|
{
 | 
						|
    return operator[](key);
 | 
						|
} |