ArduinoBLE - BLE.end()

Stops the Bluetooth® Low Energy device.

Syntax

BLE.end()

Parameters

None

Returns

Nothing

Example


  // begin initialization
  if (!BLE.begin()) {
    Serial.println("starting Bluetooth® Low Energy module failed!");

    while (1);
  }

  // ....

  BLE.end();