summaryrefslogtreecommitdiff
path: root/iot_barcode_scanner/static.py
blob: af7668323346f399fd7fbbbaf6e013ce2baedf51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20


"""Module to store static Data for the whole Package"""


CONFIG_PATH = "/etc/xengineering.eu/iot_barcode_scanner/config.json"

KEYMAP = {
    "KEY_0": "0",
    "KEY_1": "1",
    "KEY_2": "2",
    "KEY_3": "3",
    "KEY_4": "4",
    "KEY_5": "5",
    "KEY_6": "6",
    "KEY_7": "7",
    "KEY_8": "8",
    "KEY_9": "9",
    "KEY_ENTER": "\n",
}