Home AMX User Forum AMXForums Archive Threads AMX Hardware AutoPatch Forum

Autopatch 4YDM errors

Does anyone know what these errors mean? I can't seem to find anything in the documentation.

I am getting the following errors when I review the System Errors:

01000004 000000F0

Also, is it possible to disconnect an input/output combination? (I.E., disconnect ouput 2 from input 1, rather than choosing another, unused input?)

Comments

  • Not sure about the error code, but the BCS command for disconnecting is "D"
    Here's an example of disconnecting Output 2 on Level 0:

    "DL0O2T"


    The format is D(Disconnect) L(Level)0(Level0)O2(Output 2)T(Take)
    You can also Disconnect an input by replacing "O" with "I" (I=Input)

    --John
  • To expand a bit further...
    if you have one input connected to multiple outputs as in Input 1 connected to Outputs 1,2,3,4,5,6 and you wanted to disconnect output 6 from input 1 you can do two things:

    1) "DL0O6T"
    or
    2) "DL0I1T"


    They look almost the same but they do two different things. If you fire off the first command Output 6 will be disconnected, but Input 1 will still be connected to output 1,2,3,4,5. If you fire off the second command, Input 1 will be disconnected and you'll end up with nothing connected to outputs 1,2,3,4,5,6. This is important if you're using the matrix switch to send music to 6 rooms and you only want to disconnect one room. Performing one action will kill the music in one room, the other will kill the music in all rooms.

    --John
Sign In or Register to comment.