Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
f3dc2845
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,发现更多精彩内容 >>
未验证
提交
f3dc2845
编写于
7月 19, 2023
作者:
O
openharmony_ci
提交者:
Gitee
7月 19, 2023
浏览文件
操作
浏览文件
下载
差异文件
!21038 【泛Sensor】修复文档描述、代码示例
Merge pull request !21038 from lixiangpeng5/master-lxp
上级
93d6b3d0
3cddad11
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
40 addition
and
41 deletion
+40
-41
zh-cn/application-dev/device/vibrator-guidelines.md
zh-cn/application-dev/device/vibrator-guidelines.md
+35
-38
zh-cn/application-dev/reference/apis/js-apis-sensor.md
zh-cn/application-dev/reference/apis/js-apis-sensor.md
+3
-1
zh-cn/application-dev/reference/syscap-list.md
zh-cn/application-dev/reference/syscap-list.md
+2
-2
未找到文件。
zh-cn/application-dev/device/vibrator-guidelines.md
浏览文件 @
f3dc2845
...
@@ -226,46 +226,43 @@ try {
...
@@ -226,46 +226,43 @@ try {
```
ts
```
ts
import
vibrator
from
'
@ohos.vibrator
'
;
import
vibrator
from
'
@ohos.vibrator
'
;
const
FILE_NAME
=
"
xxx.json
"
;
// 获取振动文件资源描述符
// 获取振动文件资源描述符
let
fileDescriptor
=
undefined
;
async
function
getRawfileFd
(
fileName
)
{
getContext
().
resourceManager
.
getRawFd
(
FILE_NAME
).
then
(
value
=>
{
let
rawFd
=
await
globalThis
.
getContext
().
resourceManager
.
getRawFd
(
fileName
);
fileDescriptor
=
{
fd
:
value
.
fd
,
offset
:
value
.
offset
,
length
:
value
.
length
};
return
rawFd
;
console
.
info
(
'
Succeed in getting resource file descriptor
'
);
}
}).
catch
(
error
=>
{
console
.
error
(
`Failed to get resource file descriptor. Code:
${
error
.
code
}
, message:
${
error
.
message
}
`
);
// 关闭振动文件资源描述符
});
async
function
closeRawfileFd
(
fileName
)
{
// 使用startVibration、stopVibration需要添加ohos.permission.VIBRATE权限
await
globalThis
.
getContext
().
resourceManager
.
closeRawFd
(
fileName
)
try
{
}
// 启动自定义振动
vibrator
.
startVibration
({
// 播放自定义振动,使用startVibration、stopVibration需要添加ohos.permission.VIBRATE权限
type
:
"
file
"
,
async
function
playCustomHaptic
(
fileName
)
{
hapticFd
:
{
fd
:
fileDescriptor
.
fd
,
offset
:
fileDescriptor
.
offset
,
length
:
fileDescriptor
.
length
}
try
{
},
{
let
rawFd
=
await
getRawfileFd
(
fileName
);
usage
:
"
alarm
"
vibrator
.
startVibration
({
}).
then
(()
=>
{
type
:
"
file
"
,
console
.
info
(
'
Succeed in starting vibration
'
);
hapticFd
:
{
fd
:
rawFd
.
fd
,
offset
:
rawFd
.
offset
,
length
:
rawFd
.
length
}
},
(
error
)
=>
{
},
{
console
.
error
(
`Failed to start vibration. Code:
${
error
.
code
}
, message:
${
error
.
message
}
`
);
usage
:
"
alarm
"
});
}).
then
(()
=>
{
// 停止所有类型的马达振动
console
.
info
(
'
Succeed in starting vibration
'
);
vibrator
.
stopVibration
(
function
(
error
)
{
},
(
error
)
=>
{
if
(
error
)
{
console
.
error
(
`Failed to start vibration. Code:
${
error
.
code
}
, message:
${
error
.
message
}
`
);
console
.
error
(
`Failed to stop vibration. Code:
${
error
.
code
}
, message:
${
error
.
message
}
`
);
});
return
;
vibrator
.
stopVibration
(
function
(
error
)
{
}
if
(
error
)
{
console
.
info
(
'
Succeed in stopping vibration
'
);
console
.
error
(
`Failed to stop vibration. Code:
${
error
.
code
}
, message:
${
error
.
message
}
`
);
})
return
;
}
catch
(
error
)
{
}
console
.
error
(
`An unexpected error occurred. Code:
${
error
.
code
}
, message:
${
error
.
message
}
`
);
console
.
info
(
'
Succeed in stopping vibration
'
);
})
await
closeRawfileFd
(
fileName
);
}
catch
(
error
)
{
console
.
error
(
`An unexpected error occurred. Code:
${
error
.
code
}
, message:
${
error
.
message
}
`
);
}
}
}
// 关闭振动文件资源
getContext
().
resourceManager
.
closeRawFd
(
FILE_NAME
).
then
(()
=>
{
console
.
info
(
'
Succeed in closing resource file descriptor
'
);
}).
catch
(
error
=>
{
console
.
error
(
`Failed to close resource file descriptor. Code:
${
error
.
code
}
, message:
${
error
.
message
}
`
);
});
```
```
...
...
zh-cn/application-dev/reference/apis/js-apis-sensor.md
浏览文件 @
f3dc2845
...
@@ -3387,7 +3387,7 @@ try {
...
@@ -3387,7 +3387,7 @@ try {
console
.
info
(
'
Succeeded in getting rotationMatrix
'
+
JSON
.
stringify
(
data
));
console
.
info
(
'
Succeeded in getting rotationMatrix
'
+
JSON
.
stringify
(
data
));
})
})
}
catch
(
error
)
{
}
catch
(
error
)
{
、
console
.
error
(
`Failed to get rotationMatrix. Code:
${
error
.
code
}
, message:
${
error
.
message
}
`
);
console
.
error
(
`Failed to get rotationMatrix. Code:
${
error
.
code
}
, message:
${
error
.
message
}
`
);
}
}
```
```
...
@@ -3612,6 +3612,8 @@ try {
...
@@ -3612,6 +3612,8 @@ try {
| HALL | 10 | 霍尔传感器。 |
| HALL | 10 | 霍尔传感器。 |
| PROXIMITY | 12 | 接近光传感器。 |
| PROXIMITY | 12 | 接近光传感器。 |
| HUMIDITY | 13 | 湿度传感器。 |
| HUMIDITY | 13 | 湿度传感器。 |
| COLOR
<sup>
10+
</sup>
| 14 | 颜色传感器。 |
| SAR
<sup>
10+
</sup>
| 15 | 吸收比率传感器。 |
| ORIENTATION | 256 | 方向传感器。 |
| ORIENTATION | 256 | 方向传感器。 |
| GRAVITY | 257 | 重力传感器。 |
| GRAVITY | 257 | 重力传感器。 |
| LINEAR_ACCELEROMETER | 258 | 线性加速度传感器。 |
| LINEAR_ACCELEROMETER | 258 | 线性加速度传感器。 |
...
...
zh-cn/application-dev/reference/syscap-list.md
浏览文件 @
f3dc2845
...
@@ -1169,7 +1169,7 @@ usb服务
...
@@ -1169,7 +1169,7 @@ usb服务
## SystemCapability.Sensors.Sensor.Lite
## SystemCapability.Sensors.Sensor.Lite
传感器服务订阅
轻量级
传感器服务订阅
| Default | 运动表 | 智能表 | 平板 | 车机 | 智慧屏 | Smart-Vision | Router |
| Default | 运动表 | 智能表 | 平板 | 车机 | 智慧屏 | Smart-Vision | Router |
| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
...
@@ -1185,7 +1185,7 @@ usb服务
...
@@ -1185,7 +1185,7 @@ usb服务
## SystemCapability.Sensors.MiscDevice.Lite
## SystemCapability.Sensors.MiscDevice.Lite
小器件-振感
轻量级
小器件-振感
| Default | 运动表 | 智能表 | 平板 | 车机 | 智慧屏 | Smart-Vision | Router |
| Default | 运动表 | 智能表 | 平板 | 车机 | 智慧屏 | Smart-Vision | Router |
| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录