Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

bluetooth-helper

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bluetooth-helper

A wrapper for BLE APIs in FxOS. It help developers handle BLE things easier.

  • 0.0.3
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

bluetooth-helper

A wrapper for BLE APIs in FxOS. It help developers handle BLE things easier.

How to Install

  1. Declare bluetooth-helper as dependency module in bower.json. Please check bower.json.
  2. Download the module: bower install.
  3. Import the module in <head> in HTML file. html<script src="bower_components/bluetooth-helper/lib/bluetooth_helper.js"></script>
  4. Done.

How to Use

Connect the device.

var ble = new BluetoothHelper({
  // Need BLE device's name or address to connect it.
  name: 'BT_NAME',
  // address: 'e4:a9:35:a4:ee:10'
});
ble.connect();

Send data to device after connected.

ble.on('connected', function() {
  // You need to send one byte or more data in HEX format at one time.
  ble.send('EE');
});

Reconnect the device.

ble.disconnected();
ble.on('disconnected', function() {
  ble.connect();
})

Keywords

FAQs

Package last updated on 17 Jun 2015

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc