forked from bblanchon/ArduinoJson
Generator: added a test of an array with 2 strings
This commit is contained in:
@ -28,8 +28,11 @@ public:
|
||||
|
||||
for (int i = 0; i < itemCount; i++)
|
||||
{
|
||||
if (i>0)
|
||||
append(",", buffer, bufferSize);
|
||||
|
||||
append("'", buffer, bufferSize);
|
||||
append(items[i], buffer, bufferSize);
|
||||
append(items[i], buffer, bufferSize);
|
||||
append("'", buffer, bufferSize);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user