mirror of
				https://github.com/eledio-devices/thirdparty-ArduinoJson.git
				synced 2025-10-31 16:14:11 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			244 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			244 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);
 | |
| }
 |