Treehopper C++ API
Magnetometer.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <tuple>
4 #include <Libraries/Types.h>
6 #include "Libraries/Pollable.h"
7 
8 namespace Treehopper {
9  namespace Libraries {
10  namespace Sensors {
11  namespace Magnetic {
12  class LIBRARIES_API Magnetometer : virtual public Pollable {
13  public:
14  vector3_t magnetometer();
15  protected:
16  vector3_t _magnetometer;
17  };
18  }
19  }
20  }
21 }
#define LIBRARIES_API
Definition: Treehopper.Libraries.h:17
Definition: AdcPin.h:3
Definition: Pollable.h:8