System.Bluetooth.TBluetoothLEDevice.DoOnReadRssi

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DoOnReadRssi(const Sender: TObject; ARssiValue: Integer; AGattStatus: TBluetoothGattStatus); virtual;

C++

virtual void __fastcall DoOnReadRssi(System::TObject* const Sender, int ARssiValue, TBluetoothGattStatus AGattStatus);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
System.Bluetooth.pas
System.Bluetooth.hpp
System.Bluetooth TBluetoothLEDevice

Description

Dispatcher of the OnReadRSSI event.

DoOnReadRssi is called as a result of a previous call to DoReadRemoteRSSI.

This event dispatcher receives the following parameters:

  • Sender is the remote device.
  • ARssiValue is the RSSI value.
  • AGattStatus is an exit status of the RSSI read operation.

Platform Support

DoOnReadRssi is never called on Windows.

See Also