Need Help - Kramer 908 amplifier
Beegs
Posts: 1
Hello,
Trying to control Kramer amp - using Protocol 3000. Can't seem to establish communication .
Trying to send strings using control a device to the port.
I can control the device over rs232 using kramer software, but can't seem to send the right string from NI-3000
New to programming, struggling with ASCI to hex conversion, or to know what string to send to the device.
any help would great thanks!!!
Trying to control Kramer amp - using Protocol 3000. Can't seem to establish communication .
Trying to send strings using control a device to the port.
I can control the device over rs232 using kramer software, but can't seem to send the right string from NI-3000
New to programming, struggling with ASCI to hex conversion, or to know what string to send to the device.
any help would great thanks!!!
0
Comments
having problems with a NI 3100 and the protocol 3000 from kramer for switching inputs I have tried
send_string kramer, "'#AV 3>*',13" but no go. this would be to switch input 3 audio and video to all outputs
instructions say the space between the AV and the 3 is important and that it must end with a carriage return
Also, the 908 only has 2 audio inputs yes?
I found on another site that while kramer references 13 as the carriage return it might in fact not be 13 but rather the $0d
so the string might be send_string kramer,"'#AV 2>*',$0D"
and not "'#AV 2>*',13"
thank you for the suggestion about an ni loosing serial ports, I can try another port.
I was really hoping that someone has used Protocal 3000 successfully.
Do you have the protocol doc?
AUD IN>OUT
You should send
Send_string Kramer,"'AUD 2>1',13"
Send_string Kramer,"'AUD ',ITOA(input),'>',ITOA(output),13"
You have a short command you can use too
Send_string Kramer,"'A 2>1',13"
Send_string Kramer,"'A ',ITOA(input),'>',ITOA(output),13"
Raphaël Thiffault
as a follow up, first you are right, it ends with $0d,$oa, secondly I could not make the #Av command work, not through terminal, Netlinx or Hyperterminal, but the #VID command works.
Lastly it worked alot better at 9600 baud rather than the 155,200 factory on an NI-3000.
Raphaël Thiffault