view service/bluetoothButtons/bluetooth_buttons.py @ 1458:be5fc8791c4d

dep on influxdb Ignore-this: a89f9f27d849d29e6b11234d6556c0b1 darcs-hash:797ee4baafebe0a5bd13d29d715c5869a091afdb
author drewp <drewp@bigasterisk.com>
date Wed, 25 Sep 2019 17:56:15 -0700
parents 80397afd5b52
children
line wrap: on
line source

import hidraw
import os
import requests
import json

fileno = os.open('/dev/hidraw0', os.O_RDWR)
h = hidraw.HIDRaw(fileno)

keys = {
    b'\x02\xb6\x00': 'left',
    b'\x02\xe9\x00': 'top',
    b'\x02\xb5\x00': 'right',
    b'\x02\xcd\x00': 'middle',
}

while True:
    buf = os.read(fileno, 16)
    print('got %r' % buf)
    addr = h.getPhysicalAddress().decode('ascii')

    if buf in keys:
        msg = {'addr': addr, 'key': keys[buf]}
        print(msg)
        requests.post('http://bang6:10011/bluetoothButton',
                      data=json.dumps(msg))
# to use port 10014