mirror of
				https://github.com/eledio-devices/thirdparty-ArduinoJson.git
				synced 2025-10-31 08:42:39 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			45 lines
		
	
	
		
			680 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			680 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| // Copyright Benoit Blanchon 2014-2017
 | |
| // MIT License
 | |
| //
 | |
| // Arduino JSON library
 | |
| // https://github.com/bblanchon/ArduinoJson
 | |
| // If you like this project, please add a star!
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #ifndef ARDUINO
 | |
| 
 | |
| #include <stddef.h>
 | |
| #include <stdint.h>
 | |
| 
 | |
| namespace ArduinoJson {
 | |
| // This class reproduces Arduino's Print class
 | |
| class Print {
 | |
|  public:
 | |
|   virtual ~Print() {}
 | |
| 
 | |
|   virtual size_t write(uint8_t) = 0;
 | |
| 
 | |
|   size_t print(const char* s) {
 | |
|     size_t n = 0;
 | |
|     while (*s) {
 | |
|       n += write(static_cast<uint8_t>(*s++));
 | |
|     }
 | |
|     return n;
 | |
|   }
 | |
| 
 | |
|   size_t println() {
 | |
|     size_t n = 0;
 | |
|     n += write('\r');
 | |
|     n += write('\n');
 | |
|     return n;
 | |
|   }
 | |
| };
 | |
| }
 | |
| 
 | |
| #else
 | |
| 
 | |
| #include <Print.h>
 | |
| 
 | |
| #endif
 |