Jump to content
C4 Forums | Control4

KAL

c4Forums Member
  • Posts

    20
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

KAL's Achievements

  1. It is solved. I had the mute query inside the set_input query. My script works with some queries, and some don´t - i don´t know why. I am getting this lua output : Received From Proxy strCommand: MUTE_ON Received From Proxy ID: 5001 Received From Proxy tParams: OUTPUT : 4001 My function : function ReceivedFromProxy(idBinding, strCommand, tParams) print("Received From Proxy strCommand: "..strCommand) print("Received From Proxy ID: "..idBinding) if tParams ~= nil then for key,value in pairs(tParams) do print("Received From Proxy tParams: "..key.." : "..value) end end if strCommand == "SET_INPUT" then if tParams.INPUT == "3000" and tParams.OUTPUT == "7000" then SendToDevice("$aS04\r") end if strCommand == "MUTE_ON" then print("MuteB") SendToDevice("$bM01\r") end end The part with "SET_INPUT" works, the part with "MUTE_ON" do not. And i don´t know why.
  2. Hello, i need a driver for a QSC audio core. The driver should : 1) Connect to [IP Address]:[Port 1702] 2) Send the command to get the volume ( cg MasterVol ) 3) Parse out the volume value ( cv "MasterVol" "-12.00dB" -12 0.75586 ) The quote after "MasterVol" is a string with the value, followed by a value. The last one is the position of the slider (from 0 to 1) The value (-12) would be perfectly fine. I can define 1dB steps, so the value is an integer. 4) Assign it to the driver variable 5) Disconnect Since i am a noob with driverworks and IP sockets, i ask for help. Thank you
  3. Thank you. I had internet to install the project. The driver are registered and state is activated.
  4. I have the driver now in a project and it works. It is registered and all but i am getting driver alerts because the project has no internet. Will the driver fail in a month or a year because it can´t phone home ?
  5. Hello, can the driver send hex values ? Leading $ and spaces between the values like in the C4 serial driver wizzard ? $02 $41 $44 $5A $5A $3B $56 $50 $4D $3A $44 $49 $43 $03 In quotes ? (i need hex, because i have to send STX and ETX)
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.