Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pybot/drivers/hotplug/button.py
blob: f714ecffd35a0d68f00e54b81aa0024eb012ce8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

RD_VERSION = 0x00
GET_VALUE = 0x01

f1 = {
    'name': 'getVersion',
    'call': RD_VERSION,
    'params': 0,
    'read': 3
}

f2 = {
    'name': 'getValue',
    'call': GET_VALUE,
    'params': 0,
    'read': 2
}

FUNCTIONS = [f1, f2]