Jetson Inference
DNN Vision Library
devKeyboard.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2017, NVIDIA CORPORATION. All rights reserved.
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20  * DEALINGS IN THE SOFTWARE.
21  */
22 
23 #ifndef __DEV_KEYBOARD_H__
24 #define __DEV_KEYBOARD_H__
25 
26 #include <stdio.h>
27 #include <stdint.h>
28 #include <string.h>
29 #include <string>
30 
31 #include <linux/input-event-codes.h>
32 
33 
39 {
40 public:
44  static KeyboardDevice* Create( const char* path="/dev/input/by-path/platform-i8042-serio-0-event-kbd" );
45 
50 
54  bool Poll( uint32_t timeout=0 );
55 
59  bool KeyDown( uint32_t code ) const;
60 
61 protected:
62  // constructor
64 
65  static const int MAX_KEYS = 256;
66 
68  int mFD;
69 
70  std::string mPath;
71 };
72 
73 #endif
74 
KeyboardDevice::mFD
int mFD
Definition: devKeyboard.h:68
KeyboardDevice::KeyboardDevice
KeyboardDevice()
KeyboardDevice::mKeyMap
int mKeyMap[MAX_KEYS]
Definition: devKeyboard.h:67
KeyboardDevice::KeyDown
bool KeyDown(uint32_t code) const
Check if a particular key is pressed.
KeyboardDevice::MAX_KEYS
static const int MAX_KEYS
Definition: devKeyboard.h:65
KeyboardDevice
Keyboard device.
Definition: devKeyboard.h:38
KeyboardDevice::mPath
std::string mPath
Definition: devKeyboard.h:70
KeyboardDevice::~KeyboardDevice
~KeyboardDevice()
Destructor.
KeyboardDevice::Create
static KeyboardDevice * Create(const char *path="/dev/input/by-path/platform-i8042-serio-0-event-kbd")
Create device.
KeyboardDevice::Poll
bool Poll(uint32_t timeout=0)
Poll the device for updates.