summaryrefslogtreecommitdiffstats
path: root/utils/nwztools/plattools/test_keys.c
blob: bfeadbb42b42affbd5c5fd8661654d145f30747f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/***************************************************************************
 *             __________               __   ___.
 *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
 *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
 *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
 *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
 *                     \/            \/     \/    \/            \/
 * $Id$
 *
 * Copyright (C) 2016 Amaury Pouly
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
 * KIND, either express or implied.
 *
 ****************************************************************************/
#include "nwz_lib.h"

int main(int argc, char **argv)
{
    /* clear screen and display welcome message */
    nwz_lcdmsg(true, 0, 0, "test_keys");
    nwz_lcdmsg(false, 0, 2, "hold BACK for 3 seconds to quit");
    /* open input device */
    int input_fd = nwz_key_open();
    if(input_fd < 0)
    {
        nwz_lcdmsg(false, 3, 4, "Cannot open input device");
        sleep(2);
        return 1;
    }
    /* display input state in a loop */
    int back_pressed = 0; /* 0 = no pressed, >0 = number of seconds pressed - 1 */
    while(1)
    {
        /* display HOLD status */
        nwz_lcdmsgf(false, 2, 5, "HOLD: %d", nwz_key_get_hold_status(input_fd));
        /* wait for event */
        int ret = nwz_key_wait_event(input_fd, 1000000);
        if(ret != 1)
        {
            if(back_pressed > 0)
                back_pressed++;
            if(back_pressed >= 4)
                break;
            continue;
        }
        struct input_event evt;
        if(nwz_key_read_event(input_fd, &evt) != 1)
            continue;
        nwz_lcdmsgf(false, 2, 6, "%s %s (HOLD=%d)                 ",
            nwz_key_get_name(nwz_key_event_get_keycode(&evt)),
            nwz_key_event_is_press(&evt) ? "pressed" : "released",
            nwz_key_event_get_hold_status(&evt));
        if(nwz_key_event_get_keycode(&evt) == NWZ_KEY_BACK && nwz_key_event_is_press(&evt))
            back_pressed = 1;
        else
            back_pressed = 0;
    }
    /* close input device */
    close(input_fd);
    /* finish nicely */
    return 0;
}