-
Notifications
You must be signed in to change notification settings - Fork 7
/
INS.h
48 lines (38 loc) · 1.34 KB
/
INS.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
INS.h - Library for implementing an Inertial Navigation System for my Quadcopter
i.e. a dead-reckoning system for obtaining current position based on the IMU data
Created by Myles Grant <[email protected]>
See also: https://github.com/grantmd/QuadCopter
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef INS_h
#define INS_h
#include "WProgram.h"
#include "Definitions.h"
class INS
{
public:
INS();
void init();
void update(int, float, float, float, float);
int getXPosition();
int getYPosition();
int getZPosition();
private:
void updateAxis(byte, int, float);
void movementEndCheck(byte);
float _acceleration[3];
float _velocity[3];
int _position[3];
int _zeroCount[3];
};
#endif