Added JsonGenerator example for Arduino

This commit is contained in:
Benoît Blanchon
2014-07-01 14:08:15 +02:00
parent a9b8e280fe
commit e8831c28d9
15 changed files with 99 additions and 37 deletions

View File

@ -5,7 +5,7 @@
#include "StringBuilder.h"
size_t StringBuilder::write(char c)
size_t StringBuilder::write(uint8_t c)
{
if (length >= capacity) return 0;