//蓝牙
System.Bluetooth //单元中主要包含以下几个类
TBluetoothManager、TBluetoothDeviceList、TBluetoothAdapter、TBluetoothDevice、TBluetoothService、
TBluetoothServiceList、TBluetoothSocket TBluetoothManager //蓝牙管理器,用于蓝牙设备管理,包括发现蓝牙设备,获取配对设备,处理远程配对请求等功能
TBluetoothDeviceList //蓝牙设备列表,TBluetoothDeviceList = class(TObjectList<TBluetoothDevice>),可以通过TBluetoothManager.GetPairedDevices //获得配对设备列表
TBluetoothAdapter //本机蓝牙设备,实现配对、取消配对等功能,可通过TBluetoothManager.CurrentAdapter得到当前蓝牙设备
TBluetoothDevice //远端蓝牙设备,每个远端设备可以提供若干个服务(TBluetoothService),
TBluetoothService //远端蓝牙设备服务,包括服务名和UUID
TBluetoothServiceList //服务列表 = class(TList<TBluetoothService>);可通过TBluetoothDevice.GetServices获得远端设备服务列表
TBluetoothSocket //蓝牙通讯套接字,通过 TBluetoothDevice.CreateClientSocket(StringToGUID(ServiceGUI), True/False)创建

最新文章

  1. 分页型Memory LCD显存管理与emWin移植
  2. 【项目经验】——JSON.parse() &amp;&amp; JSON.stringify()
  3. 基于redis的排行榜设计和实现
  4. MVC WEB安全——XSS攻击防御
  5. cssText
  6. C++运算符重载——重载二元运算符
  7. 关于C#中文本模板(.tt)的简单应用
  8. linux取出某几行
  9. 关于 Unity NavMesh 数据的访问
  10. stm32 RAM分配及占有(转)
  11. javascript-数组的常用方法
  12. 【前端】Github Pages 与域名关联简明教程
  13. staticmethod、classmethod的使用
  14. iOS - CALayer 绘图层
  15. form + iframe 获取表单提交后返回的数据
  16. django migrate报错(提前删除表等)
  17. 论文阅读笔记:【Transforming Auto-encoders】
  18. MNIST数据可视化
  19. [C#.Net]启动外部程序的几种常用方法汇总
  20. &quot;System.OutOfMemoryException&quot; exception when you execute a query in SQL Server Management Studio (转自MSDN)

热门文章

  1. ORA-01400: cannot insert NULL into
  2. 牛客多校第六场-H-Pair
  3. Web.xml配置详解之context-param(转)
  4. elasticsearch依赖的jackson-jar包与jboss依赖的jackson-jar包“版本”冲突
  5. asp.net core Mvc 增删改查
  6. Django 自定义 admin
  7. mui-scroll-wrapper mui-scroll 内容增多不出滚动条
  8. python对具有宏excel的操作
  9. JAVA学习之数组
  10. delphi基础篇之数据类型之一:1.简单类型(Simple)