mirror of
				https://github.com/eledio-devices/thirdparty-ArduinoJson.git
				synced 2025-10-31 08:42:39 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			243 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			243 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| // ArduinoJson - https://arduinojson.org
 | |
| // Copyright Benoit Blanchon 2014-2021
 | |
| // MIT License
 | |
| 
 | |
| #include <ArduinoJson.h>
 | |
| 
 | |
| struct Stream {};
 | |
| 
 | |
| int main() {
 | |
|   Stream* stream = 0;
 | |
|   DynamicJsonDocument doc(1024);
 | |
|   deserializeJson(doc, stream);
 | |
| }
 |