arduino-libraries/Arduino_JSON

Missing documentation re: how to declare JSON entry to null

Zhu-jiatong opened this issue · 1 comments

The user may need to set a null value:

{
  "foo": null
}

But there is no formal documentation for the library and the examples don't demonstrate how to do it:

JSONVar json;
json["foo"] = null;

does nullptr work?