温湿度显示

更新时间:2021-08-27 11:07:18下载pdf

TYIpcTempHumi 用于显示温度和湿度数值,组件默认使用标准 DP 模式,传入相应温湿度标准 DP 功能点即可,同时支持自定义传值。

IPC 温湿度标准 DP 功能点如下,DP 功能点详细参数请参考各 IPC 产品配置详情。

  • sensor_temperature (摄氏温度上报值)
  • temp_report_f (华氏温度上报值)
  • temp_unit_select (显示温度单位)
  • sensor_humidity (湿度上报值)

示图展示

温湿度显示

组件属性

字段名 类型 描述 默认值
standardDpMode boolean 是否为标准 DP 模式 true
sensor_temperature number 摄氏温度 undefined
temp_report_f ViewStyle 华氏温度 undefined
temp_unit_select string 温度单位 ‘0’
sensor_humidity number 湿度 undefined
containerStyle ViewStyle 容器样式 {}
iconBoxStyle ViewStyle 图标容器样式 {}
tempIcon number 温度图标 undefined
tempIconImgStyle ImageStyle 温度图标样式 {}
tempIconTextStyle TextStyle 温度文本样式 {}
humiIcon number 湿度图标 undefined
humiIconImgStyle ImageStyle 湿度图标样式 {}
humiIconTextStyle TextStyle 湿度文本样式 {}

使用示例

import { TYIpcTempHumi } from '@tuya/tuya-panel-ipc-sdk';
...
  // 标准 DP 模式
   <TYIpcTempHumi
     sensor_temperature={20}
     temp_report_f={100}
     sensor_humidity={10}
     // 温度单位选择, 默认0, 表示摄氏度  1 表示华氏度
     temp_unit_select={'0'}
   />
   // 自定义模式
   <TYIpcTempHumi
     standardDpMode={false}
     sensor_temperature={20}
     temp_report_f={100}
     sensor_humidity={10}
     temp_unit_select={'1'}
   />