Home AMX User Forum AMXForums Archive Threads Tips and Tricks
Options

DVX/DGX Clear Route Functionality?

I've been over the documentation a few times, but there doesn't seem to be a DPS/channel combination to pulse to "clear" all routes(similar to SIS '0*!' for Extron equipment)

I have a massive 'DO1,2,3,4....32T' string for clearing all the inputs on the DGX. Any other ideas for the DVX?
-Catalino

Comments

  • Options
    rfletcherrfletcher Posts: 217
    Here's what I did:
    stack_var integer i
    		
    for(i = 1; i <= nOutputs; i++)
    {
    	send_level dvMatrix[i],50,0
    	send_level dvMatrix[i],51,0
    }
    
  • Options
    huttencmhuttencm Posts: 23
    I have not tried this on the DVX/DGX yet but do use it for all the other switchers models from AutoPatch/AMX. Got this from AutoPatch Tech:
    "There is no command to clear all routes in the Optima (or any of our new
    routers) You can clear the routes in a single VM (virtual matrix) with DL#O*T"

    where # is the VM number
Sign In or Register to comment.