Howdy,
I'm sure this is one of those problems dancing right in my face and I don't see it, but I can't for the life of me figure it out. I'm getting an error that says "Expected constructor, destructor, or type conversion..."
I don't think the problem is in .cpp so I'll just post .h for now:
#ifndef ITG3200
#define ITG3200
#include "Arduino.h"
class ITG3200
{
public:
ITG3200();
int readITG3200(byte axis);
};
#endif
Here is the relevant code in .pde
#include "ITG3200.h"
ITG3200 gyro;
I appreciate any help!