WebBluetooth Test API

This commit is contained in:
zakorgyula 2016-10-03 22:09:52 +02:00
parent 4eec2c6ddc
commit e15d54edfd
14 changed files with 701 additions and 14 deletions

View file

@ -86,5 +86,6 @@ pub enum BluetoothMethodMsg {
GetDescriptors(String, Option<String>, IpcSender<BluetoothResult<BluetoothDescriptorsMsg>>),
ReadValue(String, IpcSender<BluetoothResult<Vec<u8>>>),
WriteValue(String, Vec<u8>, IpcSender<BluetoothResult<bool>>),
Test(String, IpcSender<BluetoothResult<()>>),
Exit,
}