Socket
Socket
Sign inDemoInstall

chipolo

Package Overview
Dependencies
2
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    chipolo

node.js lib for the Chipolo


Version published
Weekly downloads
7
decreased by-22.22%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

node-chipolo

node.js lib for the Chipolo

Install

npm install chipolo

Usage

var Chipolo = require('chipolo');

Discover

Chipolo.discover(callback(chipolo));

Color:

var color = chipolo.color;

Connect

chipolo.connect(callback);

Disconnect

chipolo.disconnect(callback);

Discover Services and Characteristics

chipolo.discoverServicesAndCharacteristics(callback);

Pair

Make sure Chipolo is not "paired" with other device first.

chipolo.pair(callback(success)); // success: true | false

Device Info

chipolo.readModelNumber(callback(modelNumber));

chipolo.readSerialNumber(callback(serialNumber));

chipolo.readFirmwareRevision(callback(firmwareRevision));

chipolo.readHardwareRevision(callback(hardwareRevision));

chipolo.readSoftwareRevision(callback(softwareRevision));

chipolo.readManufacturerName(callback(manufacturerName));

Temperature_

chipolo.readTemperature(callback(temperature)); // temperature in °C

Battery

chipolo.readIsBatteryLow(callback(isBatteryLow)); // isBatteryLow: true | false

Audio notifications

// inRange, outOfRange, shakeAndFind: true | false
chipolo.setAudioNotifications(inRange, outOfRange, shakeAndFind, callback);

Beep

chipolo.beep(callback);

Distance

chipolo.estimateDistance(callback(estimatedDistance));

Events

Disconnect

chipolo.on('disconnect', callback);

Keywords

FAQs

Last updated on 22 Feb 2014

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc