9863530446dbe5a3b697e379a80e4d27b790c929
[libnomaccel] / include / accel.h
1 /* ============================================================================
2     Copyright (C) 2010 nomrasco
3     Nom Rasco <nomrasco@gmail.com>
4
5     This file is part of libnomaccel.
6
7     libnomaccel is free software: you can redistribute it and/or modify
8     it under the terms of the GNU Lesser General Public License as published by
9     the Free Software Foundation, either version 3 of the License, or
10     (at your option) any later version.
11
12     libnomaccel is distributed in the hope that it will be useful,
13     but WITHOUT ANY WARRANTY; without even the implied warranty of
14     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15     GNU Lesser General Public License for more details.
16
17     You should have received a copy of the GNU Lesser General Public License
18     along with libnomaccel.  If not, see <http://www.gnu.org/licenses/>.
19 ============================================================================ */
20 #ifndef _NOM_ACCELEROMETER_H_
21 #define _NOM_ACCELEROMETER_H_
22
23 typedef int   value;
24 typedef float angle;
25
26 /* simplest retrieving functions: x,y,z,pitch,roll */
27 value nom_accel_get_x ();
28 value nom_accel_get_y ();
29 value nom_accel_get_z ();
30 void  nom_accel_get_xyz (value* x, value* y, value* z);
31
32 angle nom_accel_get_pitch ();
33 angle nom_accel_get_roll  ();
34 void  nom_accel_get_pitch_roll (angle* pitch, angle* roll);
35
36 void  nom_accel_get_all ( value* x, value* y, value* z,
37                           angle* pitch, angle* roll     );
38
39
40
41 #endif