Delphi XE7的蓝牙 Bluetooth
Delphi XE7已经内建了蓝牙功能,提供了System.Bluetooth.pas单元 顾名思义,System表示XE7的蓝牙功能可以在Windows,Android,IOS系统内使用 System.Bluetooth单元中主要包含一下几个类,其中带LE的支持所有系统,不带LE的类不支持Ios系统,带与不带LE功能是一样的。 TBluetoothManager TBluetoothDeviceList TBluetoothAdapter TBluetoothDevice TBluetoothService TBluetoothServiceList TBluetoothSocket TBluetoothLEManager TBluetoothLEDeviceList TBluetoothLEAdapter TBluetoothLEDevice TBluetoothLEService TBluetoothLEServiceList TBluetoothLESocket 其中: TBluetoothManager是蓝牙管理器,用于蓝牙设备管理,包括发现蓝牙设备,获取配对设备,处理远程配对请求等功能 TBluetoothDeviceList是蓝牙设备列表,TBluetoothDeviceList = class(TObjectList<TBluetoothDevice>)