mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-08-07 22:54:43 +02:00
Fixed misspelling (itertor -> iterator).
@@ -140,7 +140,7 @@ If you want to check the type value has a certain type, call `is<T>()`:
|
|||||||
|
|
||||||
You can also iterate through the key-value pairs of the object:
|
You can also iterate through the key-value pairs of the object:
|
||||||
|
|
||||||
for (JsonObject::itertor it=root.begin(); it!=root.end(); ++it)
|
for (JsonObject::iterator it=root.begin(); it!=root.end(); ++it)
|
||||||
{
|
{
|
||||||
Serial.println(it->key);
|
Serial.println(it->key);
|
||||||
Serial.println(i->value.asString());
|
Serial.println(i->value.asString());
|
||||||
|
Reference in New Issue
Block a user