vibrator-guidelines.md 11.9 KB
Newer Older
H
update  
HelloCrease 已提交
1 2 3 4 5 6
# Vibrator开发指导


## 场景介绍

当设备需要设置不同的振动效果时,可以调用Vibrator模块,例如:设备的按键可以设置不同强度和不同时长的振动,闹钟和来电可以设置不同强度和时长的单次或周期振动。
7

8
详细的接口介绍请参考[Vibrator接口](../reference/apis/js-apis-vibrator.md)
H
update  
HelloCrease 已提交
9 10 11 12


## 接口说明

C
cff-gite 已提交
13 14 15 16 17 18
| 模块          | 接口名                                                       | 描述                                                         |
| ------------- | ------------------------------------------------------------ | ------------------------------------------------------------ |
| ohos.vibrator | startVibration(effect: VibrateEffect, attribute: VibrateAttribute): Promise<void> | 根据指定振动效果和振动属性触发马达振动,使用Promise异步回调。 |
| ohos.vibrator | startVibration(effect: VibrateEffect, attribute: VibrateAttribute, callback: AsyncCallback<void>): void | 根据指定振动效果和振动属性触发马达振动,使用Callback异步回调。 |
| ohos.vibrator | stopVibration(stopMode: VibratorStopMode): Promise<void> | 按照指定模式停止马达的振动。                                 |
| ohos.vibrator | stopVibration(stopMode: VibratorStopMode, callback: AsyncCallback<void>): void | 按照指定模式停止马达的振动。                                 |
19
| ohos.vibrator | stopVibration(): Promise<void>                         | 停止所有模式的马达振动。                                     |
20
| ohos.vibrator | stopVibration(callback: AsyncCallback<void>): void     | 停止所有模式的马达振动。                                     |
21
| ohos.vibrator | isSupportEffect(effectId: string): Promise<boolean>    | 查询是否支持传入的参数effectId。返回true则表示支持,否则不支持 |
22
| ohos.vibrator | isSupportEffect(effectId: string, callback: AsyncCallback<boolean>): void | 查询是否支持传入的参数effectId。返回true则表示支持,否则不支持 |
H
update  
HelloCrease 已提交
23

L
lixiangpeng5 已提交
24 25 26 27 28

## 自定义振动格式

自定义振动提供给用户设计自己所需振动效果的能力,用户可通过自定义振动配置文件,并遵循相应规则编排所需振动形式,使能更加开放的振感交互体验。

29 30
自定义振动配置文件为Json格式,在形式上如下所示:

L
lixiangpeng5 已提交
31
```json
L
lixiangpeng5 已提交
32
{
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
    "MetaData": {
        "Create": "2023-01-09",
        "Description": "a haptic case",
        "Version": 1.0,
        "ChannelNumber": 1
    },
    "Channels": [
        {
            "Parameters": {
                "Index": 1
            },
            "Pattern": [
                {
                    "Event": {
                        "Type": "transient",
                        "StartTime": 0,
                        "Parameters": {
                            "Intensity": 100,
                            "Frequency": 31
                        }
                    }
                },
                {
                    "Event": {
                        "Type": "continuous",
                        "StartTime": 100,
                        "Duration": 54,
                        "Parameters": {
                            "Intensity": 38,
                            "Frequency": 30
                        }
                    }
                }
            ]
        }
    ]
L
lixiangpeng5 已提交
69 70
}
```
71

L
lixiangpeng5 已提交
72 73 74 75 76 77 78
Json文件共包含2个属性。
- "MetaData"属性中为文件头信息,可在如下属性中添加描述。<br>
"Version":必填项,文件格式的版本号,向前兼容,目前起步仅支持版本1.0;<br>
"ChannelNumber":必填项,表示马达振动的通道数,目前仅支持单通道,规定为1;<br>
"Create":可选项,可记录文件创作时间;<br>
"Description":可选项,可指明振动效果、创建信息等附加说明。<br>
- "Channels"属性中为马达振动通道的相关信息。<br>
79

L
lixiangpeng5 已提交
80
```json
L
lixiangpeng5 已提交
81
{
82 83 84 85 86 87
    "MetaData": {
        "Create": "2023-01-09",
        "Description": "a haptic case",
        "Version": 1.0,
        "ChannelNumber": 1
    },
L
lixiangpeng5 已提交
88
    "Channels": [ ]
L
lixiangpeng5 已提交
89 90
}
```
91

L
lixiangpeng5 已提交
92 93 94 95
"Channels"是Json数组,表示各个通道的信息,包含两个属性。
- "Parameters"属性中为通道参数。<br>
"Index":必填项,表示通道编号,单通道下规定为1。<br>
- "Pattern"属性中为马达振动序列,为Json数组。<br>
96

L
lixiangpeng5 已提交
97
```json
L
lixiangpeng5 已提交
98 99 100 101 102
"Channels": [
    {
        "Parameters": {
            "Index": 1
        },
L
lixiangpeng5 已提交
103
        "Pattern": [ ]
L
lixiangpeng5 已提交
104 105 106
    }
]
```
107

L
lixiangpeng5 已提交
108 109 110
"Pattern"中每个"Event"属性代表1个振动事件,支持添加2种振动类型。
- 类型1:"transient"类型,瞬态短振动,干脆有力;<br>
- 类型2:"continuous"类型,稳态长振动,具备长时间输出强劲有力振动的能力。<br>
111

L
lixiangpeng5 已提交
112
```json
L
lixiangpeng5 已提交
113 114 115 116 117 118 119 120
"Pattern": [
    {
        "Event": {
            "Type": "transient",
            "StartTime": 0,
            "Parameters": {
                "Intensity": 100,
                "Frequency": 31
121
            }
L
lixiangpeng5 已提交
122 123 124 125 126 127 128 129 130 131
        }
    },
    {
        "Event": {
            "Type": "continuous",
            "StartTime": 100,
            "Duration": 54,
            "Parameters": {
                "Intensity": 38,
                "Frequency": 30
132 133
            }
        }
L
lixiangpeng5 已提交
134 135 136
    }
]
```
137 138 139 140 141

振动事件参数信息具体如下表:

| 参数 | 说明 | 范围|
| --- | ------------------------ | ---|
L
lixiangpeng5 已提交
142 143 144 145 146
| Type | 振动事件类型,必填 | "transient" 或"continuous"|
| StartTime | 振动的起始时间,必填 | 单位ms,有效范围为[0, 1800 000],振动事件不能重叠|
| Duration | 振动持续时间,仅当类型为"continuous"时有效 | 单位ms,有效范围为(10, 1600)|
| Intensity | 振动强度,必填 | 有效范围为[0, 100],这里的强度值为相对值,并不代表真实强度|
| Frequency | 振动频率,必填 | 有效范围为[0, 100],这里的频率值为相对值,并不代表真实频率|
147 148 149 150 151 152 153

其他要求:

| 参数 | 要求                 |
| -------- | ------------------------ |
| 振动事件(event)的数量 | 不得超过128个 |
| 振动配置文件长度 | 不得超过64KB |
H
update  
HelloCrease 已提交
154

L
lixiangpeng5 已提交
155

H
update  
HelloCrease 已提交
156 157
## 开发步骤

H
h00514358 已提交
158
1. 控制设备上的振动器,需要申请权限ohos.permission.VIBRATE。具体配置方式请参考[权限申请声明](../security/accesstoken-guidelines.md)
H
update  
HelloCrease 已提交
159

L
li-yaoyao777 已提交
160
2. 根据指定振动效果和振动属性触发马达振动。
C
cff-gite 已提交
161

L
lixiangpeng5 已提交
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
```js
import vibrator from '@ohos.vibrator';
try {
    vibrator.startVibration({ // 使用startVibration需要添加ohos.permission.VIBRATE权限
        type: 'time',
        duration: 1000,
    }, {
        id: 0,
        usage: 'alarm'
    }, (error) => {
        if (error) {
            console.error('vibrate fail, error.code: ' + error.code + 'error.message: ', + error.message);
            return;
        }
        console.log('Callback returned to indicate a successful vibration.');
    });
} catch (err) {
    console.error('errCode: ' + err.code + ' ,msg: ' + err.message);
}
```
C
cff-gite 已提交
182

L
li-yaoyao777 已提交
183
3. 按照指定模式停止马达的振动。 
C
cff-gite 已提交
184

L
lixiangpeng5 已提交
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
```js
import vibrator from '@ohos.vibrator';
try {
    // 按照VIBRATOR_STOP_MODE_TIME模式停止振动, 使用stopVibration需要添加ohos.permission.VIBRATE权限
    vibrator.stopVibration(vibrator.VibratorStopMode.VIBRATOR_STOP_MODE_TIME, function (error) {
        if (error) {
            console.log('error.code' + error.code + 'error.message' + error.message);
            return;
        }
        console.log('Callback returned to indicate successful.');
    })
} catch (err) {
    console.info('errCode: ' + err.code + ' ,msg: ' + err.message);
}
```

201 202
4. 停止所有模式的马达振动。

L
lixiangpeng5 已提交
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
```js
import vibrator from '@ohos.vibrator';
// 使用startVibration、stopVibration需要添加ohos.permission.VIBRATE权限
try {
    vibrator.startVibration({
        type: 'time',
        duration: 1000,
    }, {
        id: 0,
        usage: 'alarm'
    }, (error) => {
        if (error) {
            console.error('vibrate fail, error.code: ' + error.code + 'error.message: ', + error.message);
            return;
        }
        console.log('Callback returned to indicate a successful vibration.');
    });
    // 停止所有类型的马达振动
    vibrator.stopVibration(function (error) {
        if (error) {
            console.log('error.code' + error.code + 'error.message' + error.message);
            return;
        }
        console.log('Callback returned to indicate successful.');
    })
} catch (error) {
    console.info('errCode: ' + error.code + ' ,msg: ' + error.message);
}
```
232 233 234

5. 查询是否支持传入的参数effectId。

L
lixiangpeng5 已提交
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268
```js
import vibrator from '@ohos.vibrator';
try {
    // 查询是否支持'haptic.clock.timer'
    vibrator.isSupportEffect('haptic.clock.timer', function (err, state) {
        if (err) {
            console.error('isSupportEffect failed, error:' + JSON.stringify(err));
            return;
        }
        console.log('The effectId is ' + (state ? 'supported' : 'unsupported'));
        if (state) {
            try {
                vibrator.startVibration({ // 使用startVibration需要添加ohos.permission.VIBRATE权限
                    type: 'preset',
                    effectId: 'haptic.clock.timer',
                    count: 1,
                }, {
                    usage: 'unknown'
                }, (error) => {
                    if(error) {
                        console.error('haptic.clock.timer vibrator error:'  + JSON.stringify(error));
                    } else {
                        console.log('haptic.clock.timer vibrator success');
                    }
                });
            } catch (error) {
                console.error('Exception in, error:' + JSON.stringify(error));
            }
        }
    })
} catch (error) {
    console.error('Exception in, error:' + JSON.stringify(error));
}
```
269

270 271
6. 启动和停止自定义振动

L
lixiangpeng5 已提交
272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328
```js
import vibrator from '@ohos.vibrator';
import resourceManager from '@ohos.resourceManager';

const FILE_NAME = "xxx.json";

async function openResource(fileName) {
    let fileDescriptor = undefined;
    let mgr = await resourceManager.getResourceManager();
    await mgr.getRawFd(fileName).then(value => {
        fileDescriptor = {fd: value.fd, offset: value.offset, length: value.length};
        console.log('openResource success fileName: ' + fileName);
    }).catch(error => {
        console.log('openResource err: ' + error);
    });
    return fileDescriptor;
}

async function closeResource(fileName) {
    let mgr = await resourceManager.getResourceManager();
    await mgr.closeRawFd(fileName).then(()=> {
        console.log('closeResource success fileName: ' + fileName);
    }).catch(error => {
        console.log('closeResource err: ' + error);
    });
}

// 获取振动文件资源描述符
let rawFd = openResource(FILE_NAME);
// 使用startVibration、stopVibration需要添加ohos.permission.VIBRATE权限
try {
    // 启动自定义振动
    vibrator.startVibration({
        type: "file",
        hapticFd: { fd: rawFd.fd, offset: rawFd.offset, length: rawFd.length }
    }, {
        usage: "alarm"
    }).then(() => {
        console.info('startVibration success');
    }, (error) => {
        console.info('startVibration error');
    });
    // 停止所有类型的马达振动
    vibrator.stopVibration(function (error) {
        if (error) {
            console.log('error.code' + error.code + 'error.message' + error.message);
            return;
        }
        console.log('Callback returned to indicate successful.');
    })
} catch (error) {
    console.info('errCode: ' + error.code + ' ,msg: ' + error.message);
}
// 关闭振动文件资源
closeResource(FILE_NAME);
```

C
cff-gite 已提交
329

Z
zengyawen 已提交
330 331 332 333
## 相关实例

针对振动开发,有以下相关实例可供参考:

L
lixiangpeng5 已提交
334
- [`Vibrator`:振动(ArkTS)(API9)](https://gitee.com/openharmony/applications_app_samples/tree/master/code/BasicFeature/DeviceManagement/Vibrator/BasicVibration)
L
lixiangpeng5 已提交
335
- [`CustomHaptic`:自定义振动(ArkTS)(API10)](https://gitee.com/openharmony/applications_app_samples/tree/master/code/BasicFeature/DeviceManagement/Vibrator/CustomHaptic)