Home AMX User Forum AMX General Discussion

Peavey Media Matrix X-Frame 88

Does anyone have a better protocol manual for a Peavey Media Matrix X-Frame 88 than the one provided with the xframe software?

Thanks

Comments

  • d_gavin wrote:
    Does anyone have a better protocol manual for a Peavey Media Matrix X-Frame 88 than the one provided with the xframe software?

    Thanks

    There is/was an .axs file in the devices section. Not much to it
    DEFINE_CALL 'SET VALUE ON MEDIAMATRIX' (CARD,USERID[3],VALUE)
    {
      SEND_STRING CARD,"'S',USERID,ITOHEX(VALUE/16),ITOHEX(VALUE%16),'.'"
    }
    
    DATA_EVENT[dvMM]
    {
        STRING:
        {
    	LOCAL_VAR CHAR iBuffer[255]
    	STACK_VAR CHAR iTemp[20]
    	
    	iBuffer = "iBuffer,DATA.TEXT"
    	WHILE(FIND_STRING(iBuffer,'.',1))
    	{
    	    iTemp = REMOVE_STRING(iBuffer,'.',1)
    	    {
    		SELECT
    		{
    		    ACTIVE(FIND_STRING(iTemp,'V001',1)):
    		    {
    			nMicLevel[1] = HEXTOI(RIGHT_STRING(iTemp,3))
    		    }
                     }
                }
             }
         }
    }
    
Sign In or Register to comment.