How do you call this type of variable and how to implement in the arduino IDE? I have searched but without the name its hard.
Example:
Person include person.name, person.age, person.adress etc...
Thanks
How do you call this type of variable and how to implement in the arduino IDE? I have searched but without the name its hard.
Example:
Person include person.name, person.age, person.adress etc...
Thanks
person would be a structure, perhaps like this:
struct person {
char *name;
int age;
char *address1;
char *address2;
etc
};
Pete
Ah thanks!! I'll look on that.