Home AMX User Forum NetLinx Studio

muting channels on AMX AXB VOL-3 ?

http://www.amx.com//assets/manuals/0321024.pdf

going over this PDF manual I'm not sure how to write the protocol to mute the channels. I can easily change the levels using these commands:

SEND_COMMAND dvVOL1,"'P0L0%'"

SEND_COMMAND dvVOL1,"'P0L25%'"

SEND_COMMAND dvVOL1,"'P0L50%'"

SEND_COMMAND dvVOL1,"'P0L75%'"

SEND_COMMAND dvVOL1,"'P0L100%'"

but some reason the SEND_COMMAND dvVOL1,"'P0L0%'" is not muting the audio.

on page 5 for the provided link above, how would I write the a mute command on any of the channels?

Comments

  • annuelloannuello Posts: 294
    Gday Ray,

    Muting on the Vol3 is done via channel on/off events, not send_command.
    send_command dvVol1,'P0L50%'  //Set 1 & 2 to 50%
    on[dvVol1,3]  //Mute 1 & 2
    send_command dvVol1,'P0L25%'  //Set 1 & 2 to 25%, while the channels are still muted
    off[dvVol1,3]  //Unmute 1 & 2
    

    Roger McLean
    Swinburne University
  • thanks for your help Roger! :)
Sign In or Register to comment.