setTransmissionPower method

BeaconBroadcast setTransmissionPower(
  1. int transmissionPower
)

Sets transmission power for beacon.

Transmission power determines strength of the signal transmitted by beacon. It's measured in dBm. Higher values amplify the signal strength, but also increase power usage.

This parameter is optional, if not set, the default value for Android will be -59dB and for iOS the default received signal strength indicator (RSSI) value associated with the iOS device (see this article for more: Turning an iOS Device into an iBeacon

Implementation

BeaconBroadcast setTransmissionPower(int transmissionPower) {
  _transmissionPower = transmissionPower;
  return this;
}