Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
45ac3cd9
D
Docs
项目概览
OpenHarmony
/
Docs
大约 1 年 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
45ac3cd9
编写于
10月 17, 2022
作者:
C
cff-gite
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修改资料
Signed-off-by:
N
cff-gite
<
chenfeifei8@huawei.com
>
上级
2c45dba5
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
4 addition
and
223 deletion
+4
-223
zh-cn/application-dev/reference/apis/js-apis-sensor.md
zh-cn/application-dev/reference/apis/js-apis-sensor.md
+4
-223
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-sensor.md
浏览文件 @
45ac3cd9
...
...
@@ -340,7 +340,7 @@ try {
on(type: SensorId.HALL, callback: Callback
<
HallResponse
>
, options?: Options): void
订阅
心率
传感器数据。
订阅
霍尔
传感器数据。
**系统能力**
:SystemCapability.Sensors.Sensor
...
...
@@ -372,44 +372,6 @@ try {
}
```
### HEART_RATE<sup>9+</sup>
on(type: SensorId.HEART_RATE, callback: Callback
<
HeartRateResponse
>
,options?: Options): void
订阅心率传感器数据。
**需要权限**
:ohos.permission.READ_HEALTH_DATA
**系统能力**
:SystemCapability.Sensors.Sensor
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ------------------------------------------------------- | ---- | ------------------------------------------------------------ |
| type |
[
SensorId
](
#sensorid9
)
| 是 | 要订阅的心率传感器类型为HEART_RATE。 |
| callback | Callback
<
[HeartRateResponse](#heartrateresponse)
>
| 是 | 注册一次心率传感器的回调函数,上报的数据类型为HeartRateResponse。 |
| options |
[
Options
](
#options
)
| 否 | 可选参数列表,设置上报频率,默认值为200000000ns。 |
**错误码**
:
以下错误码的详细介绍请参见
[
ohos.sensor(传感器)错误码
](
../errorcodes/errorcode-sensor.md
)
。
| 错误码ID | 错误信息 |
| -------- | ------------------ |
| 14500101 | Service exception. |
**示例:**
```
js
try
{
sensor
.
on
(
sensor
.
SensorId
.
HEART_RATE
,
function
(
data
){
console
.
info
(
'
Heart rate:
'
+
data
.
heartRate
);
},
{
interval
:
10000000
}
);
}
catch
(
err
)
{
console
.
info
(
'
on fail, errCode:
'
+
err
.
code
+
'
,msg:
'
+
err
.
message
);
}
```
### HUMIDITY<sup>9+</sup>
on(type: SensorId.HUMIDITY, callback: Callback
<
HumidityResponse
>
,options?: Options): void
...
...
@@ -446,47 +408,6 @@ try {
}
```
### LINEAR_ACCELERATION<sup>9+</sup>
on(type: SensorId.LINEAR_ACCELEROMETER, callback: Callback
<
LinearAccelerometerResponse
>
,
options?: Options): void
订阅线性加速度传感器数据。
**需要权限**
:ohos.permission.ACCELEROMETER
**系统能力**
:SystemCapability.Sensors.Sensor
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
| type |
[
SensorId
](
#sensorid9
)
| 是 | 要订阅的线性加速度传感器类型为LINEAR_ACCELEROMETER。 |
| callback | Callback
<
[LinearAccelerometerResponse](#linearaccelerometerresponse)
>
| 是 | 注册线性加速度传感器的回调函数,上报的数据类型为LinearAccelerometerResponse。 |
| options |
[
Options
](
#options
)
| 否 | 可选参数列表,设置上报频率,默认值为200000000ns。 |
**错误码**
:
以下错误码的详细介绍请参见
[
ohos.sensor(传感器)错误码
](
../errorcodes/errorcode-sensor.md
)
。
| 错误码ID | 错误信息 |
| -------- | ------------------ |
| 14500101 | Service exception. |
**示例:**
```
js
try
{
sensor
.
on
(
sensor
.
SensorId
.
LINEAR_ACCELEROMETER
,
function
(
data
)
{
console
.
info
(
'
X-coordinate component:
'
+
data
.
x
);
console
.
info
(
'
Y-coordinate component:
'
+
data
.
y
);
console
.
info
(
'
Z-coordinate component:
'
+
data
.
z
);
},
{
interval
:
10000000
}
);
}
catch
(
err
)
{
console
.
info
(
'
on fail, errCode:
'
+
err
.
code
+
'
,msg:
'
+
err
.
message
);
}
```
### MAGNETIC_FIELD<sup>9+</sup>
on(type: SensorId.MAGNETIC_FIELD, callback: Callback
<
MagneticFieldResponse
>
,options?: Options): void
...
...
@@ -799,7 +720,7 @@ try {
on(type: SensorId.WEAR_DETECTION, callback: Callback
<
WearDetectionResponse
>
,
options?: Options): void
订阅
磨损
检测传感器数据。
订阅
佩戴
检测传感器数据。
**系统能力**
:SystemCapability.Sensors.Sensor
...
...
@@ -1181,44 +1102,6 @@ try {
}
```
### HEART_RATE<sup>9+</sup>
once(type: SensorId.HEART_RATE, callback: Callback
<
HeartRateResponse
>
): void
订阅一次心率传感器数据。
**需要权限**
:ohos.permission.READ_HEALTH_DATA
**系统能力**
:SystemCapability.Sensors.Sensor
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ------------------------------------------------------- | ---- | ------------------------------------------------------------ |
| type |
[
SensorId
](
#sensorid9
)
| 是 | 心率传感器类型为HEART_RATE。 |
| callback | Callback
<
[HeartRateResponse](#heartrateresponse)
>
| 是 | 注册一次心率传感器的回调函数,上报的数据类型为HeartRateResponse。 |
**错误码**
:
以下错误码的详细介绍请参见
[
ohos.sensor(传感器)错误码
](
../errorcodes/errorcode-sensor.md
)
。
| 错误码ID | 错误信息 |
| -------- | ------------------ |
| 14500101 | Service exception. |
**示例:**
```
js
try
{
sensor
.
once
(
sensor
.
SensorId
.
HEART_BEAT_RATE
,
function
(
data
)
{
console
.
info
(
'
Heart rate:
'
+
data
.
heartRate
);
}
);
}
catch
(
err
)
{
console
.
info
(
'
once fail, errCode:
'
+
err
.
code
+
'
,msg:
'
+
err
.
message
);
}
```
### HUMIDITY<sup>9+</sup>
once(type: SensorId.HUMIDITY, callback: Callback
<
HumidityResponse
>
): void
...
...
@@ -1255,46 +1138,6 @@ try {
}
```
### LINEAR_ACCELERATION<sup>9+</sup>
once(type: SensorId.LINEAR_ACCELEROMETER, callback: Callback
<
LinearAccelerometerResponse
>
): void
订阅一次线性加速度传感器数据。
**需要权限**
:ohos.permission.ACCELEROMETER
**系统能力**
:SystemCapability.Sensors.Sensor
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
| type |
[
SensorId
](
#sensorid9
)
| 是 | 线性加速度传感器类型为LINEAR_ACCELEROMETER。 |
| callback | Callback
<
[LinearAccelerometerResponse](#linearaccelerometerresponse)
>
| 是 | 注册一次线性加速度传感器的回调函数,上报的数据类型为LinearAccelerometerResponse。 |
**错误码**
:
以下错误码的详细介绍请参见
[
ohos.sensor(传感器)错误码
](
../errorcodes/errorcode-sensor.md
)
。
| 错误码ID | 错误信息 |
| -------- | ------------------ |
| 14500101 | Service exception. |
**示例:**
```
js
try
{
sensor
.
once
(
sensor
.
SensorId
.
LINEAR_ACCELEROMETER
,
function
(
data
)
{
console
.
info
(
'
X-coordinate component:
'
+
data
.
x
);
console
.
info
(
'
Y-coordinate component:
'
+
data
.
y
);
console
.
info
(
'
Z-coordinate component:
'
+
data
.
z
);
}
);
}
catch
(
err
)
{
console
.
info
(
'
once fail, errCode:
'
+
err
.
code
+
'
,msg:
'
+
err
.
message
);
}
```
### MAGNETIC_FIELD<sup>9+</sup>
once(type: SensorId.MAGNETIC_FIELD, callback: Callback
<
MagneticFieldResponse
>
): void
...
...
@@ -1603,7 +1446,7 @@ try {
once(type: SensorId.WEAR_DETECTION, callback: Callback
<
WearDetectionResponse
>
): void
订阅一次
磨损
检测传感器数据。
订阅一次
佩戴
检测传感器数据。
**系统能力**
:SystemCapability.Sensors.Sensor
...
...
@@ -1910,36 +1753,6 @@ try {
}
```
### HEART_RATE<sup>9+</sup>
off(type: SensorId.HEART_RATE, callback?: Callback
<
HeartRateResponse
>
): void
取消订阅心率传感器数据。
**需要权限**
:ohos.permission.READ_HEALTH_DATA
**系统能力**
:SystemCapability.Sensors.Sensor
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ------------------------------------------------------- | ---- | ------------------------------------------------------------ |
| type |
[
SensorId
](
#sensorid9
)
| 是 | 要取消订阅的心率传感器类型为HEART_RATE。 |
| callback | Callback
<
[HeartRateResponse](#heartrateresponse)
>
| 是 | 取消注册一次心率传感器的回调函数,上报的数据类型为HeartRateResponse。 |
**示例:**
```
js
try
{
function
callback
(
data
)
{
console
.
info
(
"
Heart rate:
"
+
data
.
heartRate
);
}
sensor
.
off
(
sensor
.
SensorId
.
HEART_RATE
,
callback
);
}
catch
(
err
)
{
console
.
info
(
'
off fail, errCode:
'
+
err
.
code
+
'
,msg:
'
+
err
.
message
);
}
```
### HUMIDITY<sup>9+</sup>
off(type: SensorId.HUMIDITY, callback?: Callback
<
HumidityResponse
>
): void
...
...
@@ -1968,38 +1781,6 @@ try {
}
```
### LINEAR_ACCELEROMETER<sup>9+</sup>
off(type: SensorId.LINEAR_ACCELEROMETER, callback?: Callback
<
LinearAccelerometerResponse
>
): void
取消订阅线性加速度传感器数据。
**需要权限**
:ohos.permission.ACCELEROMETER
**系统能力**
:SystemCapability.Sensors.Sensor
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
| type |
[
SensorId
](
#sensorid9
)
| 是 | 要取消订阅的线性加速度传感器类型为LINEAR_ACCELERATION。 |
| callback | Callback
<
[LinearAccelerometerResponse](#linearaccelerometerresponse)
>
| 是 | 取消注册性加速度传感器的回调函数,上报的数据类型为LinearAccelerometerResponse。 |
**示例:**
```
js
try
{
function
callback
(
data
)
{
console
.
info
(
'
X-coordinate component:
'
+
data
.
x
);
console
.
info
(
'
Y-coordinate component:
'
+
data
.
y
);
console
.
info
(
'
Z-coordinate component:
'
+
data
.
z
);
}
sensor
.
off
(
sensor
.
SensorId
.
LINEAR_ACCELEROMETER
,
callback
);
}
catch
(
err
)
{
console
.
info
(
'
off fail, errCode:
'
+
err
.
code
+
'
,msg:
'
+
err
.
message
);
}
```
### MAGNETIC_FIELD<sup>9+</sup>
off(type: SensorId.MAGNETIC_FIELD, callback?: Callback
<
MagneticFieldResponse
>
): void
...
...
@@ -2244,7 +2025,7 @@ try {
off(type: SensorId.WEAR_DETECTION, callback?: Callback
<
WearDetectionResponse
>
): void
取消订阅
磨损
检测传感器数据。
取消订阅
佩戴
检测传感器数据。
**系统能力**
:SystemCapability.Sensors.Sensor
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录