Interface UC421BLEWeightResult

Weight data sent from UC421BLE.

UC421BLEから送られてくる体重データ。

Hierarchy

  • UC421BLEWeightResult

Properties

bmi?: number

BMI. If the height for the user is not set, this property does not exist.

BMI 該当ユーザに対して身長が設定されていない場合はこの項目は存在しない

height?: number

Height(cm). Available value range: 90 ~ 220. If no value is set for the user, this property does not exist.

身長(cm) 設定可能範囲 90 ~ 220 該当ユーザに対して身長が設定されていない場合はこの項目は存在しない

timestamp?: {
    day: number;
    hour: number;
    minute: number;
    month: number;
    second: number;
    year: number;
}

TimeStamp. If the timeStamp is not set, this property does not exist.(In obniz.js setting of timeStamp is automatically done when connecting to UC421BLE) When measuring both weight and body composition data, the timeStamp of weight data and body composition data will be the same.

タイムスタンプ タイムスタンプが設定されていない場合はこの項目は存在しない(obniz.jsでは毎接続時に自動でタイムスタンプ設定を行なっている) 体重と体組成の両方を測定した場合は、体重データと体組成データのタイムスタンプが同じになる

Type declaration

  • day: number
  • hour: number
  • minute: number
  • month: number
  • second: number
  • year: number
weight?: null | {
    unit: "kg" | "lb";
    value: number;
}

Weight(kg/lb). It defaults to 'kg'. If the measurement failed, this property will be null.

体重(kg/lb) デフォルトはkg 測定エラーの時はnull

Type declaration

  • unit: "kg" | "lb"
  • value: number

Generated using TypeDoc