Bluetooth Communication

Read from and write to Bluetooth® devices

Bluetooth is a wireless communication protocol for exchanging data over short distances using short wavelength radio transmissions. Common devices with Bluetooth capabilities include laptops, phones, and wireless sensors.

Use the Bluetooth interface in MATLAB® to transmit and receive ASCII and binary data. This interface uses the Bluetooth Serial Port Profile (SPP). You can identify any Bluetooth SPP device and establish a two-way connection with that device from MATLAB.

To communicate with a Bluetooth device, your computer needs to have a built-in or external Bluetooth adapter. For more information, see Configure Bluetooth Communication Settings.

Functions

expand all

bluetoothlistScan nearby Bluetooth Classic devices
bluetoothConnect to Bluetooth Classic device
configureTerminatorSet terminator for ASCII string communication with Bluetooth device
configureCallbackSet callback function and trigger condition for communication with Bluetooth device
readRead data from Bluetooth device
readlineRead line of ASCII string data from Bluetooth device
writeWrite data to Bluetooth device
writelineWrite line of ASCII data to Bluetooth device
flushClear Bluetooth device buffers

Topics

Bluetooth Communication Overview

Learn about the basic concepts of Bluetooth communication.

Configure Bluetooth Communication Settings

Establish a connection between MATLAB and your Bluetooth device.

Transmit Data Using Bluetooth Communication

Write and read both text and binary data with a Bluetooth device.

Use Callbacks for Bluetooth Communication

Enhance instrument communication by executing a callback function when a specified event occurs on the device.

Transition Your Code to bluetooth Interface

Connect to Bluetooth devices using bluetooth instead of Bluetooth.

Troubleshooting

Troubleshooting Bluetooth Communication

Troubleshoot the Bluetooth interface.

Resolve Bluetooth Warning: Unable to Read Any Data

Troubleshoot when you receive no data and you get the warning message: Bluetooth unable to read any data.

Resolve Bluetooth Warning: Unable to Read All Data

Troubleshoot when you receive some data and you get the warning message: Bluetooth unable to read all requested data.

Featured Examples