denon-client
Version:
A handy denon avr client. Allows controlling the AVR and listen to events. May work with Marantz devices too.
62 lines (52 loc) • 698 B
JavaScript
;
/**
* The input options
*
* @class DisplayDimOptions
*/
/**
* The Low attribute.
*
* @default Low
* @property {string} Low
*/
/**
* The Mid attribute.
*
* @default Mid
* @property {string} Mid
*/
/**
* The High attribute.
*
* @default High
* @property {string} High
*/
/**
* The Off attribute.
*
* @default Off
* @property {string} Off
*/
/**
* The Status attribute.
*
* @default ?
* @property {string} Status
*/
/**
* The Base attribute.
*
* @default SI
* @private
* @property {string} Base
*/
const DisplayDimOptions = {
Low: ' DAR',
Mid: ' DIM',
High: ' BRI',
Off: ' OFF',
Status: ' ?',
Base: 'SSDIM'
};
module.exports = DisplayDimOptions;