Updated API Reference (markdown)

domonetic
2015-11-17 10:38:48 -03:00
parent 233467b6c1
commit 7e5c368cb9

@@ -277,8 +277,9 @@ Returns a reference to the new JsonArray or JsonArray::invalid() if the allocati
StaticJsonBuffer<200> jsonBuffer; StaticJsonBuffer<200> jsonBuffer;
``` ```
**Returns the size (in bytes) of an object with n elements.** **Dinamic size.**
**Can be very handy to determine the size of a StaticJsonBuffer.** _Returns the size (in bytes) of an object with n elements._
_Can be very handy to determine the size of a StaticJsonBuffer._
```c++ ```c++
struct SensorData { struct SensorData {
@@ -287,7 +288,7 @@ struct SensorData {
float value; float value;
}; };
#define SENSORDATA_JSON_SIZE (**JSON_OBJECT_SIZE(3)**) #define SENSORDATA_JSON_SIZE (JSON_OBJECT_SIZE(3))
``` ```