denon-client
Version:
A handy denon avr client. Allows controlling the AVR and listen to events. May work with Marantz devices too.
60 lines (51 loc) • 629 B
JavaScript
'use strict';
/**
* The zone 2 options
*
* @class Zone2Options
*/
/**
* The Volume Up attribute.
*
* @default UP
* @property {string} Up
*/
/**
* The Volume Down attribute.
*
* @default DOWN
* @property {string} Down
*/
/**
* The On attribute.
*
* @default ON
* @property {string} On
*/
/**
* The Off attribute.
*
* @default OFF
* @property {string} Off
*/
/**
* The Status attribute.
*
* @default ?
* @property {string} Status
*/
/**
* The Base attribute.
*
* @default Z2
* @private
* @property {string} Base
*/
module.exports = {
On: 'ON',
Off: 'OFF',
Up: 'UP',
Down: 'DOWN',
Status: '?',
Base: 'Z2'
};