void Vibrate();

 

Causes the device to vibrate.

 

Remarks

 

Vibrate() causes the device to vibrate if a vibration motor is present on the device.

 

NOTE: this function is effective on the device only.

 

Availability

 

Available in DragonFireSDK 1.4 and later.

 

Example

 

The example below vibrates the device.

 

#include "DragonFireSDK.h"

 

void AppMain()

{

   Vibrate();

}

 

void AppExit()

{

 

}

 

void OnTimer()

{

 

}