Polycom HDX-8000
prakash
Member
Does anyone having Polycom HDX-8000 serial Power ON/OFF Commands?
Sent from my Nexus 4 using Tapatalk
Sent from my Nexus 4 using Tapatalk
Comments
-
I don't think you have Power On/Off Control.
You have "wake" and "sleep" -
Jim Donachiue wrote: »I don't think you have Power On/Off Control.
You have "wake" and "sleep"
Yes I checked, I have Wake and Sleep
SEND_STRING dvPolycom, "sleep register"
Is this ok? -
Are you using the AMX Module for the HDX9002?
If so, I think you can simply do:
ON[vdvHDX, POWER_ON]; //Module does Send_String dvHDX, "'wake', $0D";
and
OFF[vdvHDX, POWER_ON];//Module does Send_String dvHDX, "'sleep', $0D";
If I am wrong, please correct me anyone. -
Jim Donachiue wrote: »Are you using the AMX Module for the HDX9002?
If so, I think you can simply do:
ON[vdvHDX, POWER_ON]; //Module does Send_String dvHDX, "'wake', $0D";
and
OFF[vdvHDX, POWER_ON];//Module does Send_String dvHDX, "'sleep', $0D";
If I am wrong, please correct me anyone.
Yes I am using AMX Module for the HDX9002
Thanx for helping me -
Jim Donachiue wrote: »Are you using the AMX Module for the HDX9002?
If so, I think you can simply do:
ON[vdvHDX, POWER_ON]; //Module does Send_String dvHDX, "'wake', $0D";
and
OFF[vdvHDX, POWER_ON];//Module does Send_String dvHDX, "'sleep', $0D";
If I am wrong, please correct me anyone.
DEFINE_DEVICE is
dvPolycomHDXSerial = 5001:1:0 // RS232 port 1 real device
vdvPolycomHDX1Serial = 41002:1:0 // Serial virtual device 1
vdvPolycomHDX2Serial = 41002:2:0 // Serial virtual device 2
vdvPolycomHDX3Serial = 41002:3:0 // Serial virtual device 3
vdvPolycomHDX4Serial = 41002:4:0 // Serial virtual device 4
vdvPolycomHDX5Serial = 41002:5:0 // Serial virtual device 5
vdvPolycomHDX6Serial = 41002:6:0 // Serial virtual device 6
vdvPolycomHDX7Serial = 41002:7:0 // Serial virtual device 7
vdvPolycomHDX8Serial = 41002:8:0 // Serial virtual device 8 -
When user selects VC:
Wake up Codec, if it is not already Awake.
if ( !([vdvPolycomHDX1Serial, POWER_ON]) )
ON[vdvPolycomHDX1Serial, POWER_ON];
...Route VC to displays, etc...
On System Shutdown:
Put Codec to Sleep, if it is Awake
if ( ([vdvPolycomHDX1Serial, POWER_ON]) )
OFF[vdvPolycomHDX1Serial, POWER_ON]; -
For some reason (and this may have been the early revisions of the module), channel 27 and 28 didn't work very reliably to wake and sleep the codec. I've gotten into the habit of doing SEND_COMMAND vdvCodec,"'PASSTHRU-wake'" and 'sleep' for that particular function.
-
For some reason (and this may have been the early revisions of the module), channel 27 and 28 didn't work very reliably to wake and sleep the codec. I've gotten into the habit of doing SEND_COMMAND vdvCodec,"'PASSTHRU-wake'" and 'sleep' for that particular function.
I will agree with nickm.
Change the previous code to://When user selects VC Call: Define_Function VCStartup() { //Wake up Codec, if it is not already Awake. if ( !VCStarted ) { Send_Command vdvPolycomHDX1Serial, "'PASSTHRU-wake'"; VCStarted = True; } //...Route VC to displays, etc... } //On System Shutdown Call: Define_Function VCShutdown() { //Put Codec to Sleep, if it is Awake if ( VCStarted ) { Send_Command vdvPolycomHDX1Serial, "'PASSTHRU-sleep'"; VCStarted = False; } }
Categories
- All Categories
- 2.5K AMX General Discussion
- 922 AMX Technical Discussion
- 514 AMX Hardware
- 502 AMX Control Products
- 3 AMX Video Distribution Products
- 9 AMX Networked AV (SVSI) Products
- AMX Workspace & Collaboration Products
- 3.4K AMX Software
- 151 AMX Resource Management Suite Software
- 386 AMX Design Tools
- 2.4K NetLinx Studio
- 135 Duet/Cafe Duet
- 248 NetLinx Modules & Duet Modules
- 57 AMX RPM Forum
- 228 MODPEDIA - The Public Repository of Modules for Everyone
- 943 AMX Specialty Forums
- 2.6K AMXForums Archive
- 2.6K AMXForums Archive Threads
- 1.5K AMX Hardware
- 432 AMX Applications and Solutions
- 249 Residential Forum
- 182 Tips and Tricks
- 146 AMX Website/Forums