SendBlueTooth
This command sends data (packets) through the mobile device BlueTooth port. Before you use this command, setup the port that will be used to send/receive data via BlueTooth. See the Device.SetBlueTooth for more details.
Group: Device Extensions
Syntax: [bOK] = Device.SendBlueTooth(vPacket, vPort)
bOK (Boolean) Optional return value showing success or failure of received packet
vPacket (Variant) is the text stream to be sent to the serial port.
vPort (Variant) is the name of the port
Note: To obtain the name of the devices (the vPort value), you will need to manually pair the two BlueTooth devices first. Refer to your device manufacturer documentation on how to enable BlueTooth and pair a device.
This command is currently only supported on Android devices.
Example:
Sending a Tab character to a device that expects this format.
Device.SendBlueTooth("&T",3)