Facility Control

 View Only
Expand all | Collapse all

VM Dashboard

Michael ZIPP

Michael ZIPP06-12-2015 22:00

  • 1.  VM Dashboard

    Posted 06-10-2015 20:09
    I'm looking to set up a simple down stream keyer for our studio. I will need only 3 sources on my dashboard (Key, Fill, Background) with 2 media stores. I want to control the frame (Carbonite) from a VM so that our operators can log on and simply take a key to air over our network feed with no touchscreen, Only using the dashboard app.

    Have any of you had experience setting up dashboard in a similar fashion?

    Have any of you built a custom dashboard with only a couple buttons and do you mind sharing how to do this with me?

    Thanks!


  • 2.  RE: VM Dashboard

    Posted 06-12-2015 19:25
    Hi Michael.

    I'll see what I can do to get your an example of how to do this with a Carbonite soon - there are a LOT of parameters on Carbonites so I'm just trying to track down the ones that are important for your task.

    #DashBoard


  • 3.  RE: VM Dashboard

    Posted 06-12-2015 20:06
    Thanks James,

    I'm aiming to have this put together In the next couple of days. I've read through the manual, and I can't seem to find out how I can create a button in dashboard that triggers the switcher to take the source "Input 1" to air through the carbonite.

    Do you have any instructions on how i can set that up?

    #DashBoard


  • 4.  RE: VM Dashboard

    Posted 06-12-2015 20:11

    If you don't require any feedback and just want a push-and-go, you can use RossTalk to do this.

    Here's a button that sets ME1 Program to Input 1

    `
    rosstalk.sendMessage('IP ADDRESS OF CARBONITE', 7788, 'XPT ME:1:PGM:IN:1');

    `

    #DashBoard


  • 5.  RE: VM Dashboard

    Posted 06-12-2015 20:12
    Note: This example expects the Carbonite to be listening for RossTalk messages on port 7788 - I'm not sure how to setup RossTalk on a Carbonite but the manual or Tech Support should be able to give you those details.

    #DashBoard


  • 6.  RE: VM Dashboard

    Posted 06-12-2015 20:37
    Awesome. What command type would this be? (SEQI, Take,?)

    Does this look right to you?



    rosstalk.sendMessage('10.30.10.30', 7788, 'XPT ME:1:PGM:IN:1');



    #DashBoard


  • 7.  RE: VM Dashboard

    Posted 06-12-2015 20:43
    The command type for this one would be XPT (crosspoint).

    That pretty much right to me (or as close as it can be with the forum's idiosyncrasies in sharing snippets of code)

    #DashBoard


  • 8.  RE: VM Dashboard

    Posted 06-12-2015 20:45
    I don't see XPT listed, my options are SEQI, TAKE, SEQO, CLFB, RESUME.

    Thanks

    #DashBoard


  • 9.  RE: VM Dashboard

    Posted 06-12-2015 20:47
    You are looking in the list in the RossTalk task type in DashBoard, correct?

    There should be a LOT more than that.

    #DashBoard


  • 10.  RE: VM Dashboard

    Posted 06-12-2015 22:00
    Found it. Thanks!

    #DashBoard


  • 11.  RE: VM Dashboard

    Posted 06-16-2015 23:12
    Hey James,

    Could you please give the the code I can use to create a button (For cut to switcher media 1).

    Thank you

    #DashBoard


  • 12.  RE: VM Dashboard

    Posted 06-17-2015 13:26

    Hi Michael.

    Spoke with the Carbonite team and they say the following:

    [QUOTE]MS:1

    For example, in order to switch the background of ME1 to Media 1 you would use:

    XPT ME:1:PGM:MS:1

    Knowing that, we can change our button:

    `
    rosstalk.sendMessage('IP ADDRESS OF CARBONITE', 7788, 'ME:1:PGM:MS:1');

    `

    #DashBoard


  • 13.  RE: VM Dashboard

    Posted 06-18-2015 14:34
    Thanks James

    Do you know If the dashboard app will still function If the controller has been unplugged from the frame? We would like to use dashboard only and move the controller into storage.

    #DashBoard