Are structs not working in the WebIDE? I know that with the Arduino IDE, struct definitions have to go into a header, but I can’t do that with the WebIDE:
// LIB1.H FILE
struct test{
unsigned long id;
char* label;
};
// CPP FILE
// This #include statement was automatically added by the Spark IDE.
#include "lib1.h"
int getEventData(test& e) {
return 0;
}
void setup() {
}
void loop() {
}
Errors encountered:
the_user_app.cpp:3:18: error: ‘test’ was not declared in this scope
the_user_app.cpp:3:24: error: ‘e’ was not declared in this scope
the_user_app.cpp: In function ‘int getEventData(test&)’:
the_user_app.cpp:4:25: error: ‘int getEventData(test&)’ redeclared as different kind of symbol
the_user_app.cpp:3:5: error: previous declaration of ‘int getEventData’