All Questions
2 questions
1
vote
1
answer
758
views
Why does static member std::map reset ESP8266 when outside the .ino file?
Here's an example of a class which crashes the ESP8266-03 causing it to reset:
Test.hpp file:
#include <map>
class Test {
public:
int data() const;
Test(int x);
~Test();
...
0
votes
1
answer
7k
views
Debugging my created Library - Error - request for member ... which is of non-class type
This seems to be a very common error, I am struggling to understand what exactly the solution to this is. I am attaching everything, library files, code, and errors. If you have a moment, I need ...