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

node-red-contrib-soundweb

v1.0.7

Published

A collection of nodes for controlling BSS soundweb devices.

Downloads

27

Readme

platform npm package version license Npm package total downloads github-issues

node-red-contrib-soundweb

A collection of nodes for controlling BSS Soundweb devices.

screenshot


Release Notes

| Version | Description | | :-----: | ----------- | | 1.0.7 | Updated dependencies | | 1.0.6 | Assign HiQnet address programatically. Documentation | | 1.0.5 | Documentation. | | 1.0.4 | Documentation. | | 1.0.3 | IMPORTANT: Flow breaking changes were introduced in v1.0.3. If you are updating from v1.0.2 or below you will need to you will need to replace nodes with their latest equivalent. Rather than have a node for each scale type and/or command type, functionality has been consolidated into as few nodes as possible. This is to simplify maintenance and updates. |


Getting Started

Prerequisites

untested on earlier versions

Installation

Install via Node-RED Manage Palette

node-red-contrib-soundweb

Install via npm

$ cd ~/.node-red
$ npm install node-red-contrib-soundweb
# then restart node-red

Nodes

soundweb-server

Configuration node that manages connection to BSS device.

soundweb-server edit dialog

soundweb-Control

Node for setting a controls value.

There are two command types:

  • set state variable
  • set state variable by percentage

There are six scale types:

  • discrete
  • scalar linear
  • gain (dB fader law)
  • delay
  • frequency
  • speed

soundweb-Control edit dialog

soundweb-Presets

Node for recalling presets by index number.

There are two command types:

  • parameter preset
  • venue preset

soundweb-Presets edit dialog


Resources

Address Property

The address property is a buffer of exactly 8 bytes. it is comprised of:

  • Node Address (2 bytes)
  • Virtual Device (1 byte)
  • Object ID (3 bytes)
  • Parameter ID (2 bytes)

The following bytes have special meanings. The node suite will automatically handle replacement when commands are encapsulated and decapsulated. Be mindfull on nodes requiring an address property that the non replaced character is needed in decimal format.

| TYPE | HEX | DEC | HEX replacement | DEC replacement | | ------ |:----:| :---:| :-------------: | :-------------: | | STX | 0x02 | 2 | 0x1B, 0x82 | 27, 130 | | ETX | 0x03 | 3 | 0x1B, 0x83 | 27, 131 | | ACK | 0x06 | 6 | 0x1B, 0x86 | 27, 134 | | NAK | 0x15 | 21 | 0x1B, 0x95 | 27, 149 | | Escape | 0x1B | 27 | 0x1B, 0x9B | 27, 155 |


Feature Requests / Bug Reporting

Please report any bugs or issues to the repository here.