Updated Arduino example

This commit is contained in:
Benoît Blanchon
2014-07-02 13:54:39 +02:00
parent c7fb77203b
commit cb0973ab38

View File

@ -14,12 +14,12 @@ void setup()
h.add("pi", 3.14);
JsonArray<3> a;
a.add(1.0);
a.add(2.0);
a.add(3.0);
a.add(1);
a.add(2);
a.add(3);
h.add("list", a);
h.add("hellow", "world");
h.add("hello", "world");
Serial.print(h);
}