NiboRoboLib 3.3 - NIBO burger Library
key.h
gehe zur Dokumentation dieser Datei
1 /* BSD-License:
2 
3 Copyright (c) 2015 by Nils Springob, nicai-systems, Germany
4 
5 All rights reserved.
6 
7 Redistribution and use in source and binary forms, with or without modification,
8 are permitted provided that the following conditions are met:
9 
10  * Redistributions of source code must retain the above copyright notice,
11  this list of conditions and the following disclaimer.
12  * Redistributions in binary form must reproduce the above copyright notice,
13  this list of conditions and the following disclaimer in the documentation
14  and/or other materials provided with the distribution.
15  * Neither the name nicai-systems nor the names of its contributors may be
16  used to endorse or promote products derived from this software without
17  specific prior written permission.
18 
19 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
23 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24 EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
26 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
27 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
28 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
29 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 
31 */
32 
44 #ifndef _NIBOBURGER_KEY_H_
45 #define _NIBOBURGER_KEY_H_
46 
47 #ifdef __cplusplus
48 extern "C" {
49 #endif
50 
51 
52 enum {
53  KEY_STATE_NONE = 0x00,
54  KEY_STATE_1 = 0x01,
55  KEY_STATE_2 = 0x02,
56  KEY_STATE_3 = 0x04,
58 };
59 
60 enum {
61  KEY_EVENT_NONE = '\0',
62 
66 
70 };
71 
72 
73 /* !
74  * \~german
75  * aktuellen Zustand der Tasten liefern, die gedrückten Tasten werden ODER-verknüpft. Wenn
76  * der aktuelle Wert ungültig ist liefert die Funktion den Wert KEY_INVALID zurück, ist keine
77  * Taste gedrück, liefert die Funktion 0 zurück.
78  * \~english
79  * current state of keypad, pressed keys are combined by binary OR. If curent value is invalid,
80  * the function returns KEY_INVALID, if no key is pressed the function returns 0.
81  */
82 uint8_t key_get_state();
83 
84 
85 /*
86  * liefert das nächste Key Event zurück. Key-Down-Events sind die Großbuchstaben A, B und C,
87  * Key-Up-Events sind die Kleinbuchstaben a, b und c.
88  * Ein einfacher Tastendruck auf den Button 1 liefert somit nacheinander 'A' und 'a'.
89  * Ist kein Key-Event vorhanden liefert die Funktion eine 0 zurück
90  */
91 char key_get_char();
92 
93 
94 #ifdef __cplusplus
95 } // extern "C"
96 #endif
97 
98 
99 
100 #endif // _NIBOBURGER_KEY_H_
keine Taste gedrückt
Definition: key.h:61
Taste 1 losgelassen.
Definition: key.h:67
keine Taste gedrückt
Definition: key.h:53
Taste 3 gedrückt.
Definition: key.h:65
Taste 3 gedrückt.
Definition: key.h:56
Taste 2 losgelassen.
Definition: key.h:68
Taste 2 gedrückt.
Definition: key.h:55
Taste 3 losgelassen.
Definition: key.h:69
Taste 1 gedrückt.
Definition: key.h:54
Taste ungültig.
Definition: key.h:57
Taste 1 gedrückt.
Definition: key.h:63
Taste 2 gedrückt.
Definition: key.h:64