summaryrefslogtreecommitdiff
path: root/utils/nwztools/plattools/test_keys.c
diff options
context:
space:
mode:
Diffstat (limited to 'utils/nwztools/plattools/test_keys.c')
-rw-r--r--utils/nwztools/plattools/test_keys.c69
1 files changed, 69 insertions, 0 deletions
diff --git a/utils/nwztools/plattools/test_keys.c b/utils/nwztools/plattools/test_keys.c
new file mode 100644
index 0000000000..3640e007fc
--- /dev/null
+++ b/utils/nwztools/plattools/test_keys.c
@@ -0,0 +1,69 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2016 Amaury Pouly
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
16 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21#include "nwz_lib.h"
22
23int main(int argc, char **argv)
24{
25 /* clear screen and display welcome message */
26 nwz_lcdmsg(true, 0, 0, "test_keys");
27 nwz_lcdmsg(false, 0, 2, "hold PWR OFF for 3 seconds to quit");
28 /* open input device */
29 int input_fd = nwz_key_open();
30 if(input_fd < 0)
31 {
32 nwz_lcdmsg(false, 3, 4, "Cannot open input device");
33 sleep(2);
34 return 1;
35 }
36 /* display input state in a loop */
37 int pwr_off_pressed = 0; /* 0 = no pressed, >0 = number of seconds pressed - 1 */
38 while(1)
39 {
40 /* display HOLD status */
41 nwz_lcdmsgf(false, 2, 5, "HOLD: %d", nwz_key_get_hold_status(input_fd));
42 /* wait for event */
43 int ret = nwz_key_wait_event(input_fd, 1000000);
44 if(ret != 1)
45 {
46 if(pwr_off_pressed > 0)
47 pwr_off_pressed++;
48 if(pwr_off_pressed >= 4)
49 break;
50 continue;
51 }
52 struct input_event evt;
53 if(nwz_key_read_event(input_fd, &evt) != 1)
54 continue;
55 nwz_lcdmsgf(false, 2, 6, "%s %s (HOLD=%d) ",
56 nwz_key_get_name(nwz_key_event_get_keycode(&evt)),
57 nwz_key_event_is_press(&evt) ? "pressed" : "released",
58 nwz_key_event_get_hold_status(&evt));
59 if(nwz_key_event_get_keycode(&evt) == NWZ_KEY_OPTION && nwz_key_event_is_press(&evt))
60 pwr_off_pressed = 1;
61 else
62 pwr_off_pressed = 0;
63 }
64 /* close input device */
65 close(input_fd);
66 /* finish nicely */
67 return 0;
68}
69