Skip to main content
Version: 8.1

system.perspective.vibrateDevice

This function is used in Python Scripting.

Description​

When called from the Perspective App, will cause the device to vibrate for the specified number of milliseconds.

note

iOS vibration duration is fixed. This function will cause an iOS device to vibrate for its default duration, 0.4 seconds (400 milliseconds).

Syntax​

system.perspective.vibrateDevice(integer, [sessionId])

Parameters​

TypeParameterDescription
StringdurationThe duration in milliseconds to vibrate the device.

Note: iOS vibration duration is fixed. Thus, this parameter will not impact the vibration duration on devices running iOS.
StringsessionIdIdentifier of the Session to target. If omitted, the current Session will be used automatically.

Returns​

Nothing

Scope​

Gateway, Perspective Session

note

This function will only work in the Gateway scope if sessionId is supplied to the call.

Code Examples​

Code Snippet - View
# Vibrates the device for 1/2 second (500 milliseconds).
system.perspective.vibrateDevice(500)

Keywords​

system perspective vibrateDevice, perspective.vibrateDevice