mirror of
https://github.com/eledio-devices/thirdparty-ArduinoJson.git
synced 2025-11-01 00:38:27 +01:00
14 lines
178 B
C++
14 lines
178 B
C++
/*
|
|
* Arduino JSON library
|
|
* Benoit Blanchon 2014 - MIT License
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
class JsonArray
|
|
{
|
|
public:
|
|
void writeTo(char* buffer, size_t bufferSize);
|
|
};
|
|
|