AMX RMS 3.0 - PROGRAMMER GUIDE Manual page 47

Resource management suite
Hide thumbs Also See for RMS 3.0 - PROGRAMMER GUIDE:
Table of Contents

Advertisement

Notify Modules
Turn Power On:
Turn Power Off:
Set Lamp Hours
Set Transport State (1=Play,
2=Stop, etc...):
Where State is:
1
Play
2
Stop
3
Pause
4
Fast Forward
5
Rewind
6
Search forward
7
Search Reverse
8
Record
You may notice that for power state, you can PULSE channel 27 or 28 to set the
state. Since most IR files store the power functions on these channels, no
additional programming is needed to send power state to the module when using
these channels to control power. Also, power status is monitored on channel 255
which is often linked to a power sensing device connected to an IO device. If you
are using an IO device to monitor power, the IO status should be set to report on
channel 255 of the real device. In some cases, this requires a 'SET IO LINK'
command to be sent to the real device. In these cases, simply pass the real device
RMS NetLinx Programmer's Guide
Custom Device Monitoring Programming
RMSSetDevicePower(dvProj,TRUE)
SEND_STRING vdvVPROJ,'POWER=1'
PULSE[vdvVPROJ,27]
ON[vdvVPROJ,255]
RMSSetDevicePower(dvProj,FALSE)
SEND_STRING vdvVPROJ,'POWER=0'
PULSE[vdvVPROJ,28]
OFF[vdvVPROJ,255]
RMSSetLampHours(dvProj,Value)
SEND_STRING
vdvVProj,'LAMPTIME=Value'
RMSSetTransportState(dvVCR,State)
SEND_STRING vdvVCR,
'TRANSPORT=State'
PULSE[vdvVCR,State+240]
39

Advertisement

Table of Contents
loading

Table of Contents