You're Invited: Meet the Socket team at BSidesSF and RSAC - April 27 - May 1.RSVP
Socket
Sign inDemoInstall
Socket

bluetooth

Package Overview
Dependencies
Maintainers
2
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bluetooth

Get or set Bluetooth state.

3.0.0
latest
Source
npm
Version published
Maintainers
2
Created
Source

bluetooth Build Status

Get or set Bluetooth state.

Currently OS X systems only

Install

$ npm install --save bluetooth

Usage

const bluetooth = require('bluetooth');

bluetooth.isOn().then(state => {
	console.log(state);
	//=> false
});

bluetooth.on().then(state => {
	console.log('Bluetooth state changed to on');
});

bluetooth.off().then(state => {
	console.log('Bluetooth state changed to off');
});

bluetooth.toggle().then(state => {
	console.log('Bluetooth state changed to on');
});

CLI

$ npm install --global bluetooth
$ bluetooth --help

  Example
    $ bluetooth
    $ bluetooth on
    $ bluetooth off

API

.isOn()

Check if bluetooth is on or off. Returns a promise for a boolean.

.on()

Turn bluetooth on. Returns a promise.

.off()

Turn bluetooth off. Returns a promise.

.toggle([force])

Toggle the bluetooth state. Returns a promise.

force

Type: boolean

Force a state when toggling.

License

MIT © Andreas Gillström

Keywords

bluetooth

FAQs

Package last updated on 25 Oct 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