diff -r 000000000000 -r 89d6a7a84779 Symbian3/SDK/Source/GUID-B57857D6-F00B-458A-8194-42CACA0BF131.dita --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Symbian3/SDK/Source/GUID-B57857D6-F00B-458A-8194-42CACA0BF131.dita Thu Jan 21 18:18:20 2010 +0000 @@ -0,0 +1,28 @@ + + + + + +Starting +the device vibra +

The StartVibraL() call starts the device +vibration feature. If StartVibraL() is called again before +the first vibration completes, the first vibration is interrupted and the +second vibrations starts immediately, that is, the periods of vibration are +not cumulative. The vibration can be interrupted with the method StopVibraL() before +the specified interval has elapsed. Vibra settings of the vibration feature +in the user profile must be active.

The device may have implementation +defined or hardware imposed limits to the duration of the vibration feature. +In such circumstances, any vibration is cut off at that limit even if the +duration parameter is greater than the limit.

The following code +snippet demonstrates how to start the device vibration feature with factory-defined +intensity:

iVibra->StartVibraL( 5000 ); // Start vibra for five seconds.

The +following code snippet demonstrates how to start the device vibration feature +with client-defined intensity:

iVibra->StartVibraL( 5000, 50 ); // Start vibra for five seconds with intensity 50.
+
\ No newline at end of file