mirror of
				https://github.com/eledio-devices/thirdparty-ArduinoJson.git
				synced 2025-10-31 16:14:11 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			650 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			650 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| // Copyright Benoit Blanchon 2014-2015
 | |
| // MIT License
 | |
| //
 | |
| // Arduino JSON library
 | |
| // https://github.com/bblanchon/ArduinoJson
 | |
| 
 | |
| #ifdef ARDUINO
 | |
| 
 | |
| // This file is here to help the Arduino IDE find the other files.
 | |
| 
 | |
| #include "src/Arduino/Print.cpp"
 | |
| #include "src/DynamicJsonBuffer.cpp"
 | |
| #include "src/Internals/IndentedPrint.cpp"
 | |
| #include "src/Internals/JsonParser.cpp"
 | |
| #include "src/Internals/List.cpp"
 | |
| #include "src/Internals/Prettyfier.cpp"
 | |
| #include "src/Internals/QuotedString.cpp"
 | |
| #include "src/Internals/StringBuilder.cpp"
 | |
| #include "src/JsonArray.cpp"
 | |
| #include "src/JsonBuffer.cpp"
 | |
| #include "src/JsonObject.cpp"
 | |
| #include "src/JsonVariant.cpp"
 | |
| 
 | |
| #endif
 |