I!-Connectlinxenginemod; Rmshelpuimod; Event Definitions; Rms Engine Device - AMX RMS CodeCrafter Operation/Reference Manual

V3.2 or higher
Hide thumbs Also See for RMS CodeCrafter:
Table of Contents

Advertisement

Code Generation

i!-ConnectLinxEngineMod

This module definition is generated if the user selects Pre-Meeting Presets and/or Monitor Source Usage in the
i!-ConnectLinx Options page.
// i!-ConnectLinxEngineMod
DEFINE_MODULE 'i!-ConnectLinxEngineMod' mdlCL(vdvCLActions)

RMSHelpUIMod

This module definition is enabled with the Include Help Desk Code option.
DEFINE_MODULE 'RMSHelpUIMod' mdlRMSHelpUI(vdvRMSEngine,

Event Definitions

RMS CodeCrafter generates the following DATA_EVENT blocks the DEFINE_EVENT section.

RMS Engine Device

RMS CodeCrafter generates a DATA_EVENT block for the RMS Engine device. This block will always be
generated, boilerplate, with these exceptions:


See the example block below:
(*******************************************)
(* DATA: RMS Engine
(*******************************************)
DATA_EVENT[vdvRMSEngine]
{
ONLINE :
{
// Configure RMS Server Address
RMSSetServer(RMS_SERVER_IP)
// Track Multiple Sources
RMSSetMultiSource(TRUE)
// Display
RMSSetDeviceInfo(dvProj,'Display','Display Manufacturer','Display Model')
RMSSetCommunicationTimeout(dvProj,200)
RMSEnablePowerFailure(dvProj)
}
}

Named Devices

RMS CodeCrafter generates a DATA_EVENT block for each Named Device. This block will always be
generated as follows:
(*******************************************)
(* DATA: Main Touch Panel
(*******************************************)
DATA_EVENT [dvTP1a]
{
ONLINE:
RMSNetLinxDeviceOnline(dvTP1a,'Main Touch Panel')
OFFLINE:
RMSNetLinxDeviceOffline(dvTP1a)
}
54
If the Use Multiple Displays option is selected, RMS CodeCrafter will generate a call to
RMSSetMultiSource(TRUE)
A call to RMSSetDeviceInfo() is generated for each monitored device using an RMS Support
Module; If the device has a non-negative timeout value, a call to RMSSetCommunicationTimeout()
is generated; Finally, if the device has Detect Control failure enabled, a call to
RMSEnablePowerFailure is generated.
dvRMSTP)
*)
*)
RMS CodeCrafter

Advertisement

Table of Contents
loading

Table of Contents