@joergmittaglawo/dmvconfig
Version:
DMV Configuration scripts for Lawo V__matrix Distributed Multiviewers.
43 lines (39 loc) • 709 B
JavaScript
/**
* @file The Heads for the WDR DMV Cluster
*
* @version 0.0.0-alpha.0
* @date 2020-03-23
* @author Mittag, Jörg (Lawo) <joerg.mittag@lawo.com>
*/
/**
* The number of Heads for the WDR DMV Cluster
*
* @readonly
* @constant {number}
*/
const NUMBER_OF_HEADS = 20;
/**
* The Heads for the WDR DMV Cluster
*
* @private
* @readonly
* @constant {object}
*/
const HEADS = Array.from(
{ length: NUMBER_OF_HEADS },
(_, head) => (
{
standard: 'HD1080p50',
streaming: 'ST2110_GPM',
pips: 32,
clocks: {
digital: 2,
analog: 0,
},
textboxes: 2,
ppms: 0,
images: 0,
}
),
);
module.exports = HEADS;