Treehopper C++ API
Gyroscope.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 Inertial {
12  class LIBRARIES_API Gyroscope : virtual public Pollable {
13  public:
14  vector3_t gyroscope();
15 
16  protected:
17  vector3_t _gyroscope;
18  };
19  }
20  }
21  }
22 }
#define LIBRARIES_API
Definition: Treehopper.Libraries.h:17
Definition: AdcPin.h:3
Definition: Pollable.h:8