Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
cordova-plugin-ble-peripheral
Advanced tools
A Cordova plugin for implementing BLE (Bluetooth Low Energy) peripherals.
Need a BLE central module? See cordova-plugin-ble-central.
Register callbacks to receive notifications from the plugin
blePeripheral.onWriteRequest(app.didReceiveWriteRequest);
blePeripheral.onBluetoothStateChange(app.onBluetoothStateChange);
Define your Bluetooth Service using JSON
var uartService = {
uuid: SERVICE_UUID,
characteristics: [
{
uuid: TX_UUID,
properties: property.WRITE,
permissions: permission.WRITEABLE,
descriptors: [
{
uuid: '2901',
value: 'Transmit'
}
]
},
{
uuid: RX_UUID,
properties: property.READ | property.NOTIFY,
permissions: permission.READABLE,
descriptors: [
{
uuid: '2901',
value: 'Receive'
}
]
}
]
};
Create the service and start advertising
Promise.all([
blePeripheral.createServiceFromJSON(uartService),
blePeripheral.startAdvertising(uartService.uuid, 'UART')
]).then(
function() { console.log ('Created UART Service'); },
app.onError
);
Instead of using JSON, you can create services programtically. Note that for 1.0 descriptors are only supported with the JSON format.
Promise.all([
blePeripheral.createService(SERVICE_UUID),
blePeripheral.addCharacteristic(SERVICE_UUID, TX_UUID, property.WRITE, permission.WRITEABLE),
blePeripheral.addCharacteristic(SERVICE_UUID, RX_UUID, property.READ | property.NOTIFY, permission.READABLE),
blePeripheral.publishService(SERVICE_UUID),
blePeripheral.startAdvertising(SERVICE_UUID, 'UART')
]).then(
function() { console.log ('Created UART Service'); },
app.onError
);
See the examples for more ideas on how this plugin can be used.
$ cordova plugin add cordova-plugin-ble-peripheral
$ phonegap plugin add cordova-plugin-ble-peripheral
Edit config.xml to install the plugin for PhoneGap Build.
<gap:plugin name="cordova-plugin-ble-peripheral" source="npm" />
Apache 2.0
Try the code. If you find an problem or missing feature please create a github issue. When you're submitting an issue please include a sample project that recreates the problem.
FAQs
Bluetooth Low Energy (BLE) Peripheral Plugin
We found that cordova-plugin-ble-peripheral demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.