obniz Parts Library

iBS03TP

GitHub
iBS03TP
Usable Devices :
obniz_board
m5stickc
obnizble
esp32
esp32gateway
m5stackbasic
ak-030
obnizble_lte
obniz_plc

iBS03TP

Waterproof temperature sensor by INGICS.

Available modes

  • Beacon mode

Beacon data (getData())

  • battery : Battery voltage
  • button : True when button is pressed
  • moving : True when moving
  • hall_sensor : True when the magnet approaches
  • temperature : Body side temperature (℃)
  • probe_temperature : Probe side temperature (℃)

Use case

// Javascript
const iBS03TP = Obniz.getPartsClass('iBS03TP');
await obniz.ble.initWait();
obniz.ble.scan.onfind = (peripheral) => {
  // Get operation mode, it becomes null when not iBS03TP
  const mode = iBS03TP.getDeviceMode(peripheral);
  if (mode) {
    // Generate an instance
    const device = new iBS03TP(peripheral, mode);
    // Get data and output to the console
    console.log(device.getData());
  }
};
await obniz.ble.scan.startWait(null, { duplicate: true, duration: null });

Supported from: obniz.js 3.5.0