示例#1
0
 protected override async Task Set(DeviceCommandInformation information)
 {
     try
     {
         await _buttplugAdapter.Set(Device, information);
     }
     catch (Exception e)
     {
         Debug.WriteLine(e.Message);
         OnDisconnected(e);
     }
 }
示例#2
0
 protected override async Task Set(DeviceCommandInformation information)
 {
     await _buttplugAdapter.Set(_device, information);
 }