UNPKG

obniz

Version:

obniz sdk for javascript

18 lines (17 loc) 411 B
/** * @packageDocumentation * @module Parts.iBS02IR */ export interface iBS02IROptions { } /** * advertisement data from iBS02IR * * iBS02IRからのadvertisementデータ */ export interface iBS02IR_Data { /** battery 電源電圧 (Unit 単位: 0.01 V) */ battery: number; /** IR proximity sensor responded or not 赤外線近接センサが反応したかどうか */ event: boolean; }