mirror of
				https://github.com/eledio-devices/thirdparty-ArduinoJson.git
				synced 2025-10-31 08:42:39 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			254 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			254 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| // ArduinoJson - arduinojson.org
 | |
| // Copyright Benoit Blanchon 2014-2018
 | |
| // MIT License
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include "JsonVariant.hpp"
 | |
| 
 | |
| namespace ArduinoJson {
 | |
| 
 | |
| // A key value pair for JsonObject.
 | |
| struct JsonPair {
 | |
|   const char* key;
 | |
|   JsonVariant value;
 | |
| };
 | |
| }
 |