forked from bblanchon/ArduinoJson
Test that JsonArray can store booleans
This commit is contained in:
@ -16,6 +16,7 @@ public:
|
||||
|
||||
JsonValue operator[](int index) const;
|
||||
|
||||
void add(bool value);
|
||||
void add(const char* value);
|
||||
void add(double value, int decimals=2);
|
||||
void add(int value) { add((long) value); }
|
||||
|
Reference in New Issue
Block a user