Home AMX User Forum AMX General Discussion
Options

Revolabs Executive HD 8 Channel

Hello Everyone,
Does any of you program the Revolabs Executive HD 4 or 8 Channel
Wireless Microphone System. Our Client wants to monitor volume level, battery level and connectivity when the mics is in use.

thanks for looking.

Comments

  • Options
    AuserAuser Posts: 506
    Haven't done volume and connectivity, but these strings may be of assistance:
    //Individual mic mute
    "'set mute ch ', itoa(_nMicNumber), ' ', itoa(_nMuteStatus), $0D"
    
    //Master mic mute
    "'set mute ch A ', itoa(_nMuteStatus), $0D"
    
    //Battery status
    "'get batt ch', itoa(_nMicNumber), $0D"
    
    //Mute status
    "'get mute ch', itoa(_nMicNumber), $0D"
    

    Check the manual off the RevoLabs wesbite for any other commands you might need, the protocol's pretty straight forward...
Sign In or Register to comment.