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

iconnectivity-midi-js

v1.1.1

Published

[View the Live Demo](https://icjs.leolabs.org) | [NPM](https://npmjs.com/package/iconnectivity-midi-js)

Downloads

7

Readme

iConnectivity JS

View the Live Demo | NPM

This library allows you to communicate with newer iConnectivity devices using JS and the Web MIDI API. It is still in very early development, but the basics already work.

The library's goal is to provide an abstraction layer that allows access to all methods described in the Common System Exclusive Commands document.

Getting Started

If you want to check out a demo project, head over to the demo package.

The easiest way to get started is using the DeviceManager. Here's an example:

import {
  DeviceManager,
  getDeviceName,
  getFailoverState,
} from "iconnectivity-midi-js";

const example = async () => {
  // Request access to MIDI devices.
  // It's important to request SysEx access as well.
  const midiAccess = await navigator.requestMIDIAccess({ sysex: true });

  // Initialize the device manager.
  // This will automatically trigger a search for devices.
  const manager = new DeviceManager(midiAccess);

  // Wait for the first device(s) to be found.
  const devices = await manager.waitForDevices();

  // At this point, we can be sure that at least one device was found.
  const device = devices[0];

  // Log some information about the device and its state.
  console.log({
    input: device.input.name,
    output: device.output.name,
    name: await getDeviceName({ device }),
  });

  // If the device is a PlayAUDIO1U,
  // we can get the current failover state.
  const failoverState = await getFailoverState({ device });
  console.log({ failoverState });
};

example();

API Usage

You can use wrapper functions for supported commands, with more coming in the future. A list of supported commands can be found below. For example, to fetch the current failover state:

import { getFailoverState } from "iconnectivity-midi-js";

// The device passed to this function could be
// one of the devices found by the DeviceManager.
const state = await getFailoverState({ device });

The device property doesn't necessarily need to be a device that the DeviceManager outputs. You could also set it to a custom Connection object:

import { getFailoverState } from "iconnectivity-midi-js";

const access = await navigator.requestMIDIAccess({ sysex: true });

// Get the first available MIDI input and output.
const input = access.inputs.values()[0];
const output = access.outputs.values()[0];

// We now send the request to the first MIDI output
// and listen to a response on the first MIDI input.
const state = await getFailoverState({
  device: new Connection(input, output),
});

Sending Raw Commands

Even if a given command isn't wrapped by this library yet, you can still call it and parse the response yourself by using the sendMessage function. This function allows you to For example:

import {
  DataClassType,
  DeviceInfo,
  GetParmVal,
  getResponseBody,
  MessageOptions,
  mergeNumber,
  RetParmVal,
  sendMessage,
} from "iconnectivity-midi-js";

/** Returns the number of MIDI ports the given device offers. */
const getPortCounts = async (options: MessageOptions) => {
  const result = await sendMessage({
    ...options,
    message: new GetParmVal(DataClassType.DeviceInfo, undefined, [
      new ParmList([
        DeviceInfo.DINInPortCount,
        DeviceInfo.DINOutPortCount,
        DeviceInfo.USBDPortCount,
        DeviceInfo.USBHPortCount,
        DeviceInfo.EthPortCount,
        DeviceInfo.CtrlPortCount,
      ]),
    ]),
  });

  const body = getResponseBody(result);
  const values = RetParmVal.fromData(body);

  return {
    midiIn: values.parmVals[0].values[0].data[0],
    midiOut: values.parmVals[0].values[1].data[0],
    usbDevice: values.parmVals[0].values[2].data[0],
    usbHost: values.parmVals[0].values[3].data[0],
    ethernet: values.parmVals[0].values[4].data[0],
    control: values.parmVals[0].values[5].data[0],
  };
};

console.log("Port count:", await getPortCount({ device }));

Supported Devices

  • MioXL
  • MioXM
  • MioXC
  • PlayAUDIO1U