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