GattNativeServiceUuid.cs 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. namespace BluetoothLENet
  2. {
  3. /// <summary>
  4. /// This enum assists in finding a string representation of a BT SIG assigned value for Service UUIDS
  5. /// Reference: https://developer.bluetooth.org/gatt/services/Pages/ServicesHome.aspx
  6. /// </summary>
  7. public enum GattNativeServiceUuid : ushort
  8. {
  9. None = 0,
  10. AlertNotification = 0x1811,
  11. Battery = 0x180F,
  12. BloodPressure = 0x1810,
  13. CurrentTimeService = 0x1805,
  14. CyclingSpeedandCadence = 0x1816,
  15. DeviceInformation = 0x180A,
  16. GenericAccess = 0x1800,
  17. GenericAttribute = 0x1801,
  18. Glucose = 0x1808,
  19. HealthThermometer = 0x1809,
  20. HeartRate = 0x180D,
  21. HumanInterfaceDevice = 0x1812,
  22. ImmediateAlert = 0x1802,
  23. LinkLoss = 0x1803,
  24. NextDSTChange = 0x1807,
  25. PhoneAlertStatus = 0x180E,
  26. ReferenceTimeUpdateService = 0x1806,
  27. RunningSpeedandCadence = 0x1814,
  28. ScanParameters = 0x1813,
  29. TxPower = 0x1804,
  30. SimpleKeyService = 0xFFE0
  31. }
  32. }