Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
d0dc8599
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看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
d0dc8599
编写于
7月 08, 2022
作者:
O
openharmony_ci
提交者:
Gitee
7月 08, 2022
浏览文件
操作
浏览文件
下载
差异文件
!6442 翻译完成:6117 修改js-apis-sensor.md
Merge pull request !6442 from wusongqing/TR6117
上级
1209ca3b
fd0b2dcc
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
4 addition
and
14 deletion
+4
-14
en/application-dev/reference/apis/js-apis-sensor.md
en/application-dev/reference/apis/js-apis-sensor.md
+4
-14
未找到文件。
en/application-dev/reference/apis/js-apis-sensor.md
浏览文件 @
d0dc8599
...
@@ -886,11 +886,7 @@ Subscribes to only one data change of the proximity sensor.
...
@@ -886,11 +886,7 @@ Subscribes to only one data change of the proximity sensor.
**Example**
**Example**
```
js
```
js
sensor
.
once
(
sensor
.
SensorType
.
SENSOR_TYPE_ID_PROXIMITY
,
function
(
error
,
data
)
{
sensor
.
once
(
sensor
.
SensorType
.
SENSOR_TYPE_ID_PROXIMITY
,
function
(
data
)
{
if
(
error
)
{
console
.
error
(
"
Subscription failed. Error code:
"
+
error
.
code
+
"
; message:
"
+
error
.
message
);
return
;
}
console
.
info
(
'
Distance:
'
+
data
.
distance
);
console
.
info
(
'
Distance:
'
+
data
.
distance
);
}
}
);
);
...
@@ -1350,8 +1346,6 @@ off(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback?: Callback<HumidityRes
...
@@ -1350,8 +1346,6 @@ off(type: SensorType.SENSOR_TYPE_ID_HUMIDITY, callback?: Callback<HumidityRes
Unsubscribes from sensor data changes.
Unsubscribes from sensor data changes.
**Required permission**
: ohos.permission.READ_HEALTH_DATA (a system permission)
**System capability**
: SystemCapability.Sensors.Sensor
**System capability**
: SystemCapability.Sensors.Sensor
**Parameters**
**Parameters**
...
@@ -1404,8 +1398,6 @@ sensor.off(sensor.SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback);
...
@@ -1404,8 +1398,6 @@ sensor.off(sensor.SensorType.SENSOR_TYPE_ID_LINEAR_ACCELERATION, callback);
Unsubscribes from sensor data changes.
Unsubscribes from sensor data changes.
**Required permissions**
: ohos.permission.ACCELEROMETER (a system permission)
**System capability**
: SystemCapability.Sensors.Sensor
**System capability**
: SystemCapability.Sensors.Sensor
**Parameters**
**Parameters**
...
@@ -1487,6 +1479,8 @@ off(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback?: Callback<PedometerR
...
@@ -1487,6 +1479,8 @@ off(type: SensorType.SENSOR_TYPE_ID_PEDOMETER, callback?: Callback<PedometerR
Unsubscribes from sensor data changes.
Unsubscribes from sensor data changes.
**Required permissions**
: ohos.permission.ACTIVITY_MOTION
**System capability**
: SystemCapability.Sensors.Sensor
**System capability**
: SystemCapability.Sensors.Sensor
**Parameters**
**Parameters**
...
@@ -1739,7 +1733,7 @@ Obtains the geomagnetic field of a geographic location. This API uses a promise
...
@@ -1739,7 +1733,7 @@ Obtains the geomagnetic field of a geographic location. This API uses a promise
**Return value**
**Return value**
| Type | Description |
| Type | Description |
| ---------------------------------------- | ------- |
| ---------------------------------------- | ------- |
| Promise
<
[GeomagneticResponse](#geomagneticresponse)
>
| Promise used to return the geomagnetic field.
|
| Promise
<
[GeomagneticResponse](#geomagneticresponse)
>
| Promise used to return the geomagnetic field.|
**Example**
**Example**
```
js
```
js
...
@@ -1899,7 +1893,6 @@ Obtains the angle change between two rotation matrices. This API uses a callback
...
@@ -1899,7 +1893,6 @@ Obtains the angle change between two rotation matrices. This API uses a callback
err
.
message
);
err
.
message
);
return
;
return
;
}
}
console
.
info
(
"
SensorJsAPI--->Successed to get getAngleModifiy interface get data:
"
+
data
.
x
);
for
(
var
i
=
0
;
i
<
data
.
length
;
i
++
)
{
for
(
var
i
=
0
;
i
<
data
.
length
;
i
++
)
{
console
.
info
(
"
data[
"
+
i
+
"
]:
"
+
data
[
i
]);
console
.
info
(
"
data[
"
+
i
+
"
]:
"
+
data
[
i
]);
}
}
...
@@ -1967,7 +1960,6 @@ Converts a rotation vector into a rotation matrix. This API uses a callback to r
...
@@ -1967,7 +1960,6 @@ Converts a rotation vector into a rotation matrix. This API uses a callback to r
err
.
message
);
err
.
message
);
return
;
return
;
}
}
console
.
info
(
"
SensorJsAPI--->Successed to get createRotationMatrix interface get data:
"
+
data
.
x
);
for
(
var
i
=
0
;
i
<
data
.
length
;
i
++
)
{
for
(
var
i
=
0
;
i
<
data
.
length
;
i
++
)
{
console
.
info
(
"
data[
"
+
i
+
"
]:
"
+
data
[
i
]);
console
.
info
(
"
data[
"
+
i
+
"
]:
"
+
data
[
i
]);
}
}
...
@@ -2034,7 +2026,6 @@ Converts a rotation vector into a quaternion. This API uses a callback to return
...
@@ -2034,7 +2026,6 @@ Converts a rotation vector into a quaternion. This API uses a callback to return
err
.
message
);
err
.
message
);
return
;
return
;
}
}
console
.
info
(
"
SensorJsAPI--->Successed to get createQuaternion interface get data:
"
+
data
.
x
);
for
(
var
i
=
0
;
i
<
data
.
length
;
i
++
)
{
for
(
var
i
=
0
;
i
<
data
.
length
;
i
++
)
{
console
.
info
(
"
data[
"
+
i
+
"
]:
"
+
data
[
i
]);
console
.
info
(
"
data[
"
+
i
+
"
]:
"
+
data
[
i
]);
}
}
...
@@ -2169,7 +2160,6 @@ Creates a rotation matrix based on the gravity vector and geomagnetic vector. Th
...
@@ -2169,7 +2160,6 @@ Creates a rotation matrix based on the gravity vector and geomagnetic vector. Th
err
.
message
);
err
.
message
);
return
;
return
;
}
}
console
.
info
(
"
SensorJsAPI--->Successed to get createRotationMatrix interface get data:
"
+
data
.
x
);
for
(
var
i
=
0
;
i
<
data
.
length
;
i
++
)
{
for
(
var
i
=
0
;
i
<
data
.
length
;
i
++
)
{
console
.
info
(
"
data[
"
+
i
+
"
]:
"
+
data
[
i
])
console
.
info
(
"
data[
"
+
i
+
"
]:
"
+
data
[
i
])
}
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录