Remove some code from BLE

This commit is contained in:
Dimitris Zervas 2020-09-22 00:58:35 +03:00
parent 29373e9a37
commit 69f7c3c8c2
No known key found for this signature in database
GPG Key ID: 5C27D7C9D1901A30

View File

@ -1,55 +1,35 @@
from adafruit_ble import BLERadio from adafruit_ble import BLERadio
from adafruit_ble.advertising import Advertisement
from adafruit_ble.advertising.standard import ProvideServicesAdvertisement from adafruit_ble.advertising.standard import ProvideServicesAdvertisement
from adafruit_ble.services.standard.hid import HIDService from adafruit_ble.services.standard.hid import HIDService
from kmk.hid import ( from kmk.hid import HID_REPORT_SIZES, AbstractHID
HID_REPORT_SIZES,
AbstractHID,
HIDReportTypes,
HIDUsage,
HIDUsagePage,
)
BLE_APPEARANCE_HID_KEYBOARD = 961 BLE_APPEARANCE_HID_KEYBOARD = 961
class BLEHID(AbstractHID): class BLEHID(AbstractHID):
def post_init(self, ble_name='KMK Keyboard', **kwargs): def post_init(self, ble_name='KMK Keyboard', **kwargs):
self.devices = {} self.conn = []
hid = HIDService() self.ble = BLERadio()
self.ble.name = ble_name
self.hid = HIDService()
advertisement = ProvideServicesAdvertisement(hid) # Security-wise this is not right. While you're away someone turns
advertisement.appearance = BLE_APPEARANCE_HID_KEYBOARD # on your keyboard and they can pair with it nice and clean and then
# listen to keystrokes.
ble = BLERadio() # On the other hand we don't have LESC so it's like shouting your
ble.name = ble_name # keystrokes in the air
# ble.tx_power = 2 if not self.ble.connected:
self.start_advertising()
if not ble.connected: while not self.ble.connected or not self.hid.devices:
ble.start_advertising(advertisement)
while not ble.connected:
pass pass
for device in hid.devices: # int, can be looked up in HIDReportTypes
us = device.usage reporting_device_const = self.report_device[0]
up = device.usage_page
if up == HIDUsagePage.CONSUMER and us == HIDUsage.CONSUMER: self.conn = self.hid.devices[reporting_device_const]
self.devices[HIDReportTypes.CONSUMER] = device
continue
if up == HIDUsagePage.KEYBOARD and us == HIDUsage.KEYBOARD: self.ble.stop_advertising()
self.devices[HIDReportTypes.KEYBOARD] = device
continue
if up == HIDUsagePage.MOUSE and us == HIDUsage.MOUSE:
self.devices[HIDReportTypes.MOUSE] = device
continue
if up == HIDUsagePage.SYSCONTROL and us == HIDUsage.SYSCONTROL:
self.devices[HIDReportTypes.SYSCONTROL] = device
continue
def hid_send(self, evt): def hid_send(self, evt):
# int, can be looked up in HIDReportTypes # int, can be looked up in HIDReportTypes
@ -60,7 +40,8 @@ class BLEHID(AbstractHID):
while len(evt) < report_size + 1: while len(evt) < report_size + 1:
evt.append(0) evt.append(0)
return self.devices[reporting_device_const].send_report( print(self.conn)
return self.conn.send_report(
evt[1 : report_size + 1] evt[1 : report_size + 1]
) )
@ -68,3 +49,12 @@ class BLEHID(AbstractHID):
import _bleio import _bleio
_bleio.adapter.erase_bonding() _bleio.adapter.erase_bonding()
def start_advertising(self):
advertisement = ProvideServicesAdvertisement(self.hid)
advertisement.appearance = BLE_APPEARANCE_HID_KEYBOARD
self.ble.start_advertising(advertisement)
def stop_advertising(self):
self.ble.stop_advertising()