Sound and Vibration Feedback
You can handle feedback patterns (media or vibration) that can be played as a reaction to specified actions.
This feature is supported in mobile and wearable applications only.
The main features of the Feedback API include the following:
-
Checking for pattern support
You can determine whether a specified media pattern type is available.
-
Setting a pattern
You can set a predefined system pattern to be played as a reaction to specific actions.
Each feedback pattern can have separate media files of sound and vibration type. For example, when receiving a new email message, a predefined sound and vibration feedback pattern can be played.
Prerequisites
-
Since Tizen 5.0 onwards, it is possible to make your application visible in the official site for Tizen applications only for devices that support the feedback vibration feature. To do so, you must specify the following feature in the
config.xml
file of the application:<widget> <feature name="http://tizen.org/feature/feedback.vibration"/> </widget>
Additionally, you can also verify if the feedback vibration feature is supported using the
tizen.systeminfo.getCapability()
method, and accordingly enable or disable the code that needs the API:try { /* Checks whether a device supports feedback vibration feature */ var vibration_feature = tizen.systeminfo.getCapability('http://tizen.org/feature/feedback.vibration'); console.log('Feedback vibration = ' + vibration_feature); } catch (error) { console.log('Error name: ' + error.name + ', message: ' + error.message); }
Check the pattern
You can check whether a feedback type (sound or vibration) is supported for a specified pattern. To get information about the supported specified system predefined pattern type pairs, use the isPatternSupported()
method of the FeedbackManager
interface (in mobile and wearable applications):
var pattern = 'BT_CONNECTED', type = 'TYPE_SOUND';
var isSupported = tizen.feedback.isPatternSupported(pattern, type);
var isSupportedStr = '';
if (!isSupported) {
isSupportedStr = ' not';
}
console.log('pattern ' + pattern + ' is' + isSupportedStr + ' supported');
Set the media pattern
The available predefined system patterns are defined in the FeedbackPattern
enumeration (in mobile and wearable applications).
To start and stop playing various types of predefined reactions, follow these steps:
-
To set a specified type of reaction for an event, use the
play()
method of theFeedbackManager
interface (in mobile and wearable applications):try { tizen.feedback.play('CHARGERCONN'); } catch (err) { console.log(err.name + ': ' + err.message); }
-
To stop reacting to predefined actions, use the
stop()
method of theFeedbackManager
interface:tizen.feedback.stop();
Related information
- Dependencies
- Tizen 3.0 and Higher for Mobile
- Tizen 3.0 and Higher for Wearable