system.dnp3.freezeAnalogs
Description
Issues a freeze command on the given analog outputs.
Syntax
system.dnp3.freezeAnalogs(deviceName, [indexes])
-
Parameters
String deviceName - The name of the DNP3 device driver.
List indexes - An optional list of specific indexes on which to issue the freeze command.
-
Returns
Nothing
-
Scope
All
Code Examples
# This example shows a request to freeze all analog inputs in the outstation.
system.dnp3.freezeAnalogs(
"Dnp3"
)
# This example shows a request to freeze analog inputs at indexes 1, 3, and 5.
system.dnp3.freezeAnalogs(
"Dnp3"
, [
1
,
3
,
5
])