Facility Control

 View Only
  • 1.  Telnet Command to Blackmagic Videohub

    Posted 02-05-2015 09:42
    Hey,

    i`m looking for a way to send telnet commands to an blackmagic videohub trough the dashboard or via carbonite panel.

    any samples flying around ?


  • 2.  RE: Telnet Command to Blackmagic Videohub

    Posted 02-05-2015 14:29

    You likely just need to use rosstalk.sendMessage. It takes 3 (or 4 if you want a function to be called after the message has been sent) parameters: host name, port, command, and callback function.

    `
    rosstalk.sendMessage('127.0.0.1', 23, 'This is my command');

    `

    #DashBoard


  • 3.  RE: Telnet Command to Blackmagic Videohub

    Posted 02-05-2015 15:34
    ok what i did was .

    rosstalk.sendMessage('10.32.16.81', 9990, ' VIDEO OUTPUT ROUTING:')

    rosstalk.sendMessage('10.32.16.81', 9990, ' 1 0')

    rosstalk.sendMessage('10.32.16.81', 9990, '')

    1 0 is for input output

    how to i trigger that button from the carbonite

    #DashBoard


  • 4.  RE: Telnet Command to Blackmagic Videohub

    Posted 02-05-2015 16:17

    I'm not sure what the command you're trying to send would look like in Telnet...

    Would it normally be spread out on 3 lines like that?

    If so, you'll probably want to send it all at once:

    `rosstalk.sendMessage('10.32.16.81"², 9990, ' VIDEO OUTPUT ROUTING:n1 0n')`

    You can trigger the button from Carbonite by attaching a "GPI Trigger" to the button in DashBoard, turning on DashBoard's "Smart GPI Listener" in Preferences, and triggering it remotely with the RossTalk GPI command (you would point to DashBoard's "Smart GPI Listener" the same way you would point to an XPression).


    #DashBoard


  • 5.  RE: Telnet Command to Blackmagic Videohub

    Posted 02-05-2015 16:22
    found it thanks - will try your code then.

    #DashBoard