amino  1.0-beta2
Lightweight Robot Utility Library
spnav_button.h
1 /* -*- mode: C; c-basic-offset: 4; -*- */
2 /* ex: set shiftwidth=4 tabstop=4 expandtab: */
3 /*
4  * Copyright (c) 2016, Rice University
5  * All rights reserved.
6  *
7  * Author(s): Neil T. Dantam <ntd@rice.edu>
8  *
9  * Redistribution and use in source and binary forms, with or
10  * without modification, are permitted provided that the following
11  * conditions are met:
12  * * Redistributions of source code must retain the above copyright
13  * notice, this list of conditions and the following disclaimer.
14  * * Redistributions in binary form must reproduce the above
15  * copyright notice, this list of conditions and the following
16  * disclaimer in the documentation and/or other materials provided
17  * with the distribution.
18  * * Neither the name of copyright holder the names of its
19  * contributors may be used to endorse or promote products derived
20  * from this software without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
23  * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
24  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
25  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
26  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
27  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
29  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
30  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
31  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
33  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
34  * POSSIBILITY OF SUCH DAMAGE.
35  *
36  */
37 
38 #ifndef AMINO_RX_SPNAV_BUTTON_H
39 #define AMINO_RX_SPNAV_BUTTON_H
40 
41 /* Based on SpaceExplorer */
42 enum aa_spnav_button {
43  AA_SPNAV_1 = 1<<0,
44  AA_SPNAV_2 = 1<<1,
45  AA_SPNAV_T = 1<<2,
46  AA_SPNAV_L = 1<<3,
47  AA_SPNAV_R = 1<<4,
48  AA_SPNAV_F = 1<<5,
49  AA_SPNAV_ESC = 1<<6,
50  AA_SPNAV_ALT = 1<<7,
51  AA_SPNAV_SHIFT = 1<<8,
52  AA_SPNAV_CTRL = 1<<9,
53  AA_SPNAV_PANEL = 1<<12,
54  AA_SPNAV_PLUS = 1<<12,
55  AA_SPNAV_MINUS = 1<<13,
56  AA_SPNAV_2D = 1<<14,
57 
58 };
59 
60 #endif