ibs_th1
TypeScript icon, indicating that this package has built-in type declarations

1.2.2 • Public • Published

IBS-TH1

A library to handle broadcasted message from bluetooth device IBS-TH1, IBS-TH1 mini and IBS-TH1 Plus. Not tested with other devices.

NPM Version

Install

npm i -S ibs_th1

Usage

const {IBS_TH1} = require('ibs_th1');

const callback = data => {
  console.log(data.address, data.date, data.temperature, data.humidity,
              data.probeType, data.battery);
};

const device = new IBS_TH1();
device.subscribeRealtimeData(callback);
import {IBS_TH1, RealtimeData} from '../src/ibs_th1';

const callback = (data: RealtimeData) => {
  console.log(data);
};

const device = new IBS_TH1();
device.subscribeRealtimeData(callback);

License

MIT

Readme

Keywords

Package Sidebar

Install

npm i ibs_th1

Weekly Downloads

0

Version

1.2.2

License

MIT

Unpacked Size

12.3 kB

Total Files

5

Last publish

Collaborators

  • pascaljp