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-xtouch-one

v1.0.4

Published

X-Touch One interface for Node JS

Downloads

9

Readme

Node X-Touch One interface library

This library allows you to interface a Behringer X-Touch One using Node.js with the MIDI protocol. For it to work, the X-Touch One device needs to be configured in MIDI note or MIDI CC mode (either relative or absolute).

Connect to the X-Touch One

To connect to the X-Touch One, the easiest way is to let the lib automatically detect it :


let xtouch = new XTouchOne();

xtouch.connect();

You can also connect using a specific device index, in case you have multiple devices and you want to handle mode precisely the way you connect to it.

let xtouch = new XTouchOne();

xtouch.connect(1, 1);

If you need to, you can also discover the available devices that match the name the X-Touch One should be reporting. It will return an associative object where keys identify the device ID and values their names.

let xtouch = new XTouchOne();

console.log(xtouch.getDevices());

Disconnect

Disconnecting can be done with the disconnect() method :

xtouch.disconnect();

Sending commands

light(button, state)

Sets the light status of the designated button. Buttons can be aliased by constants in Controls.Buttons. The statuses can be aliased by constants in Controls.LightStatus. There are 3 available statuses : OFF, ON and BLINK.

xtouch.light(Controls.Button.SCRUB, Controls.LightStatus.BLINK);
xtouch.light(Controls.Button.ENTER, Controls.LightStatus.ON);

Note: You cannot set the button SEGMENT_SOLO to BLINK, only ON and OFF.

setFaderLevel(value)

Moves the fader to the given value, between 0 (bottom) and 127 (top).

xtouch.setFaderLevel(64); // Mid-level fader

setFaderLEDLevel(value)

Sets the fader LED level. Only one LED can be lit up at one time. The LED is set with a value between 0 and 127. The value will light up accordingly to the level like a reflection of the fader. Values below 8 will turn off the LED.

xtouch.setFaderLEDLevel(64);

setEncoderRingLevel(value)

Sets the lit up LED on the encoder ring according to the value (between 0 and 127). There is no way to shut down all the ring.

xtouch.setEncoderRingLevel(64);

setSegmentDisplay(str, pad)

Sets the text/numbers on the 7-segment displays. You can set up to 12 chars, excluding dots (that are inserted between characters). There is no difference between lower and upper case characters. For strings shorter than 12 characters, alignment can be set via the pad option: padding from start will align items to the right, padding from end will align items to the left. By default, it pads from start.

xtouch.setSegmentDisplay("014825030"); // Shows a timecode on the 7-segment display

clearSegmentDisplay()

Clears the 7-segment display.

xtouch.clearSegmentDisplay();

setLCD(text, color, invertTop, invertBottom)

Sets the text in the small LCD screen above the fader. The text parameter defines the text, either as an array (with 2 elements, one for the top text, one for the bottom text) or as a string to redefine the 14 chars as one. The color parameter sets the LCD background color, between the 7 available (+ black which powers down the screen). Those colors can be aliased with one of the LCD.Background constants. The invertTop and invertBottom parameters allows to invert either the top or the bottom line of the display (or both at the same time). By default both are set as false.

xtouch.setLCDDisplay(["Top", "Bottom"], LCD.Background.GREEN);

clearLCD()

Clears the LCD screen.

xtouch.clearLCD();

clear()

Clears everything on the device.

xtouch.clear();

Reading updates

Reading updates is made using events :

// Button press / fader touch
xtouch.on("btnpress", (btn) => console.log("Button " + Controls.ButtonNames[btn] + " has been pressed."));
// Button release / fader release
xtouch.on("btnrelease", (btn) => console.log("Button " + Controls.ButtonNames[btn] + " has been released."));
// Fader move
xtouch.on("fader", (value) => console.log("Fader value: " + value));
// Encoder move (relative or absolute)
xtouch.on("encoder", (value) => {
    if(xtouch.getEncoderMode() == Controls.EncoderMode.RELATIVE) { // Relative encoder mode
        if(value == Controls.Direction.LEFT) {
            console.log("Encoder moved left");
        } else {
            console.log("Encoder moved right");
        }
    } else { // Absolute encoder mode
        console.log("Encoder value: " + value);
    }
});
// Jogwheel move
xtouch.on("jogwheel", (direction) => {
    if(direction == Controls.Direction.LEFT) {
            console.log("Jogwheel moved left");
        } else {
            console.log("Jogwheel moved right");
        }
});

License

This code is shared under the MIT License.

Copyright (c) 2022 Yohann Lorant

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.