mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-29 18:27:37 +02:00
Updated Arduino example
This commit is contained in:
@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user