24 lines
849 B
C#
24 lines
849 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace MonitoringTechnology.Ble
|
|||
|
|
{
|
|||
|
|
public class Uuids
|
|||
|
|
{
|
|||
|
|
//public const string SERVICE = "00001000-0000-1000-8000-00805f9b34fb";
|
|||
|
|
//public const string WRITE = "00001001-0000-1000-8000-00805f9b34fb";
|
|||
|
|
//public const string NOTIFY = "00001002-0000-1000-8000-00805f9b34fb";
|
|||
|
|
|
|||
|
|
//DT_SERVER
|
|||
|
|
public const string SERVICE = "0000fe80-8e22-4541-9d4c-21edae82ed19";
|
|||
|
|
public const string WRITE = "0000fe82-8e22-4541-9d4c-21edae82ed19";
|
|||
|
|
public const string NOTIFY = "0000fe83-8e22-4541-9d4c-21edae82ed19";
|
|||
|
|
|
|||
|
|
public const string GenericAccess = "00001800-0000-1000-8000-00805f9b34fb";
|
|||
|
|
public const string DeviceName = "00002a00-0000-1000-8000-00805f9b34fb";
|
|||
|
|
}
|
|||
|
|
}
|