Home AMX User Forum NetLinx Studio

Yamaha_DME 64N volume control

Hi,

I was working with yamaha DME 64N module, I have to control 3 volume control sliders for mics and 3 for laptop audio out. Yamaha module gives the feed back for slider bargraphs.

How would I point towards a particular input of yamaha, does the index id determines an input?
Or can anyone give me one sample code for the same? It will be really helpful.

Thanks

Comments

  • Google this: dme_remote_ctrl_prtcl30_en.pdf
    It should point you to the yamahapro website and there you can find it. Or just check the website.
    LEVEL_EVENT [vdvLEVELA,1]  // Podium Mic
    {
        cPodiumVol = ITOA(nPodiumVol)
        SEND_STRING dvAudProc,"'SVL 0 1 ',cPodiumVol,$0A"  //
    }
    

    Don´t know if this is what you are looking for, but this is how I did it a few years back.
  • Thorleifur wrote: »
    Google this: dme_remote_ctrl_prtcl30_en.pdf
    It should point you to the yamahapro website and there you can find it. Or just check the website.
    LEVEL_EVENT [vdvLEVELA,1]  // Podium Mic
    {
        cPodiumVol = ITOA(nPodiumVol)
        SEND_STRING dvAudProc,"'SVL 0 1 ',cPodiumVol,$0A"  //
    }
    

    Don´t know if this is what you are looking for, but this is how I did it a few years back.

    Thank u very much.
Sign In or Register to comment.