@joergmittaglawo/dmvconfig
Version:
DMV Configuration scripts for Lawo V__matrix Distributed Multiviewers.
43 lines (39 loc) • 744 B
JavaScript
/**
* @file The Heads for the Gamecreek OB 4 Celtic DMV.
*
* @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 Gamecreek OB 4 Celtic DMV
*
* @readonly
* @constant {number}
*/
const NUMBER_OF_HEADS = 96;
/**
* The Heads for the Gamecreek OB 4 Celtic DMV
*
* @private
* @readonly
* @constant {object}
*/
const HEADS = Array.from(
{ length: NUMBER_OF_HEADS },
(_, head) => (
{
standard: 'HD1080p59_94',
streaming: 'ST2110_GPM',
pips: 64,
clocks: {
digital: 4,
analog: 4,
},
textboxes: 16,
ppms: 0,
images: 0,
}
),
);
module.exports = HEADS;