IBluetooth.cs 274 B

123456789101112
  1. using InABox.Core;
  2. namespace InABox.Avalonia.Platform;
  3. public interface IBluetooth : ILoggable
  4. {
  5. Logger? Logger { get; set; }
  6. Task<bool> IsAvailable();
  7. Task<bool> WriteAsync(string macaddress, Guid serviceid, Guid characteristicid, byte[] data);
  8. }