UNPKG

denon-client

Version:

A handy denon avr client. Allows controlling the AVR and listen to events. May work with Marantz devices too.

44 lines (37 loc) 451 B
'use strict'; /** * The power options * * @class PowerOptions */ /** * 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 PW * @private * @property {string} Base */ module.exports = { On: 'ON', Standby: 'STANDBY', Status: '?', Base: 'PW' }