tist

0.3.0 • Public • Published

Tist - Texas Instruments SensorTag

Wrapper around @sandeepmistry's amazing https://github.com/sandeepmistry/node-sensortag module.

Features

  • notify, enable sensors
  • uuid filtering
  • restarting discovering if device disconnects

Example

var Tist = require('tist');
var tist = new Tist();
tist.on('device', function(device) {
  device
    .once('disconnect', function(){
      device.removeAllListeners();
    })
    .on('metric', function() {
      var args = [].slice.call(arguments);
      console.log.apply(console, ['metric arrived:'].concat(args));
    });
});

License

MIT

/tist/

    Package Sidebar

    Install

    npm i tist

    Weekly Downloads

    8

    Version

    0.3.0

    License

    MIT

    Last publish

    Collaborators

    • oroce