denon-client
Version:
A handy denon avr client. Allows controlling the AVR and listen to events. May work with Marantz devices too.
155 lines (135 loc) • 2.04 kB
JavaScript
'use strict';
/**
* The surround options
*
* @class SurroundOptions
*/
/**
* The Movie attribute.
*
* @default MOVIE
* @property {string} Movie
*/
/**
* The Music attribute.
*
* @default MUSIC
* @property {string} Music
*/
/**
* The Game attribute.
*
* @default GAME
* @property {string} Game
*/
/**
* The PureDirect attribute.
*
* @default PURE DIRECT
* @property {string} PureDirect
*/
/**
* The Direct attribute.
*
* @default DIRECT
* @property {string} Direct
*/
/**
* The Stereo attribute.
*
* @default Stereo
* @property {string} Stereo
*/
/**
* The Standard attribute.
*
* @default STANDARD
* @property {string} Standard
*/
/**
* The DolbyDigital attribute.
*
* @default DOLBY DIGITAL
* @property {string} DolbyDigital
*/
/**
* The DtsSurround attribute.
*
* @default DTS SURROUND
* @property {string} DtsSurround
*/
/**
* The MchStereo attribute.
*
* @default MCH STEREO
* @property {string} MchStereo
*/
/**
* The RockArena attribute.
*
* @default ROCK ARENA
* @property {string} RockArena
*/
/**
* The JazzClub attribute.
*
* @default JAZZ CLUB
* @property {string} JazzClub
*/
/**
* The MonoMovie attribute.
*
* @default MONO MOVIE
* @property {string} MonoMovie
*/
/**
* The Matrix attribute.
*
* @default MATRIX
* @property {string} Matrix
*/
/**
* The VideoGame attribute.
*
* @default VIDEO GAME
* @property {string} VideoGame
*/
/**
* The Virtual attribute.
*
* @default Virtual
* @property {string} Virtual
*/
/**
* The Status attribute.
*
* @default ?
* @property {string} Status
*/
/**
* The Base attribute.
*
* @default MS
* @private
* @property {string} Base
*/
module.exports = {
Movie: 'MOVIE',
Music: 'MUSIC',
Game: 'GAME',
PureDirect: 'PURE DIRECT',
Direct: 'DIRECT',
Stereo: 'STEREO',
Standard: 'STANDARD',
DolbyDigital: 'DOLBY DIGITAL',
DtsSurround: 'DTS SURROUND',
MchStereo: 'MCH STEREO',
RockArena: 'ROCK ARENA',
JazzClub: 'JAZZ CLUB',
MonoMovie: 'MONO MOVIE',
Matrix: 'MATRIX',
VideoGame: 'VIDEO GAME',
Virtual: 'VIRTUAL',
Status: '?',
Base: 'MS'
};