Is there a way to create a multidimensional array in Arduino?
I want something like this.
C++var arr = { name: "John", age: "51", children: [ "Sara", "Daniel" ] };
or maybe like this.
JSON{ "name": "John", "age": "51", "children": [ "Sara", "Daniel" ] };
What is the best approach to achieve this?