npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

denon-client

v0.2.4

Published

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

Downloads

15

Readme

denon-client

A handy node library which allows you to control and receive events of a Denon AVR.

Few words

This library is not complete. There are functions missing. Feel free to contribute by doing pull requests. New functions are easy to implement.

Get the protocol specification here: http://assets.denon.com/documentmaster/de/avr3313ci_protocol_v02.pdf

The protocol is pretty unified so any Denon AVR should be somewhat compatible.

Docs

A yuidoc based documentation is available here: http://lmoe.github.io/node-denon-client

Introduction

This library is designed to provide a simple way to operate with a Denon AVR. Making it an easy use in your own IoT project, or any lazy remote after your remote went missing.

It's using ES6 functionality and is based on promises. You are still able to receive events though.

Make sure to use strict and a newer version of node. I haven't tested it with a lower version than 5.10.1 yet.

Examples

Setting up is simple.

// Initialization
const Denon = require('denon-client');
/**
 * Denon is now an object containing DenonClient and Options.
 * Use the DenonClient to send requests. Use the Options to define the data.
 */
const denonClient = new Denon.DenonClient(`${DenonAVRHost}`);

// Subscribe to any available event
denonClient.on('masterVolumeChanged', (volume) => {
  // This event will fire every time when the volume changes.
  // Including non requested volume changes (Using a remote, using the volume wheel on the device).

  console.log(`Volume changed to: ${volume}`);
});

// Connecting
denonClient
  .connect()
  .then(() => {
    // Tasty promise chains..
    //
    // You are free to send any command now.

    return denonClient.setInput(Denon.Options.InputOptions.Aux1);
  })
  .then(() => {

    return denonClient.setSurround(Denon.Options.SurroundOptions.Stereo);
  })
  .then(() => {

    return denonClient.setVolume(98); // Destroy neighborhood
  })
  .catch((error) => {
    // Oh noez.
    console.error(error);
  });

Changelog

0.2.4

  • Added Zone2 control (ON, OFF, DOWN, UP). (Thanks to @jzucker2)

0.2.3

  • Extended input options (Game2, Dock, VAux, NetUsb). (Thanks to @MrFjellstad)

0.2.1 - 0.2.2

  • Update Readme

0.2.0

  • To meet the Semver rules the package version was changed from 0.1.9 to 0.2.0 because of the last new feature.

  • Four new input options have been added (Aux2, MPlay, MXPort, VDP). (Thanks to @DarkCinema and @jaydonoghue)

  • The port can now be set manually. Port 23 is still the default one. (Thanks to @jaydonoghue)

0.1.9

  • Implemented set and get of the display brightness.

0.1.8

  • Fix setVolume not being able to use a volume under 10 or floats.

0.1.7

  • Remove console.log ..

0.1.6

  • Fix setVolume returns no promise
  • Fix setVolume does not set float values like 22.5 as the denon API requires a non float number (225)

0.1.5

  • Fix the getVolume functionality as it returned a three digit value when the receiver returns a double (22.5 -> 225)
  • Implemented transform methods for each event / hook