Socket
Socket
Sign inDemoInstall

iconnectivity-js

Package Overview
Dependencies
1
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    iconnectivity-js

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


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

iConnectivity JS

View the Live Demo | NPM

This library allows you to communicate with 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,
  getAllInfo,
  getAutomaticFailoverState,
} from "iconnectivity-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,
    info: device.info,
    extendedInfo: await getAllInfo({ device }),
  });

  // If the device is a PlayAUDIO12,
  // we can get the current failover state.
  const failoverState = await getAutomaticFailoverState({ 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 { getAutomaticFailoverState } from "iconnectivity-js";

// The device passed to this function could be
// one of the devices found by the DeviceManager.
const state = await getAutomaticFailoverState({ 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 { getAutomaticFailoverState } from "iconnectivity-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 getAutomaticFailoverState({
  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 sendCommand function. This function allows you to For example:

import { CommandOptions, mergeNumber, sendCommand } from "iconnectivity-js";

/** Returns the number of MIDI ports the given device offers. */
const getMidiPortCount = async (options: CommandOptions) => {
  const result = await sendCommand({
    ...options,
    command: MidiCommand.GetMIDIInfo,
  });

  // The number of ports is stored in the
  // 20th and 21st byte of the response.
  return mergeNumber(result.slice(19, 21));
};

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

Supported Devices

  • mio10
  • mio
  • iConnectMIDI1
  • iConnectMIDI2+
  • iConnectMIDI4+
  • iConnectAUDIO4+
  • iConnectAUDIO2+
  • mio2
  • mio4
  • PlayAUDIO12
  • ConnectAUDIO2
  • ConnectAUDIO4

Commands

This list contains all commands currently documented by iConnectivity. The ones that already have a wrapper function are checked. If you want to contribute to this list by writing wrapper functions for more commands, feel free to open a PR.

Device Commands

  • GetDevice
  • GetCommandList
  • GetInfoList
  • GetInfo
  • SetInfo
  • GetResetList
  • GetSaveRestoreList
  • GetEthernetPortInfo
  • SetEthernetPortInfo
  • Reset
  • SaveRestore
  • GetGizmoCount
  • GetGizmoInfo
  • GetDeviceMode
  • SetDeviceMode
  • GetUserData
  • SetUserData
Extras
  • getAllInfo

MIDI Commands

  • GetMIDIInfo
  • SetMIDIInfo
  • GetMIDIPortInfo
  • SetMIDIPortInfo
  • GetMIDIPortFilter
  • SetMIDIPortFilter
  • GetMIDIPortRemap
  • SetMIDIPortRemap
  • GetMIDIPortRoute
  • SetMIDIPortRoute
  • GetMIDIPortDetail
  • SetMIDIPortDetail
  • GetRTPMIDIConnectionDetail
  • GetUSBHostMIDIDeviceDetail
  • GetMIDIMonitor
  • GetRTPMIDIConnectionParm

Audio Commands (V2)

  • GetAudioGlobalParm
  • SetAudioGlobalParm
  • GetAudioPortParm
  • SetAudioPortParm
  • GetAudioDeviceParm
  • SetAudioDeviceParm
  • GetAudioControlParm
  • SetAudioControlParm
  • GetAudioControlDetail
  • GetAudioControlDetailValue
  • SetAudioControlDetailValue
  • GetAudioClockParm
  • SetAudioClockParm
  • GetAudioPatchbayParm
  • SetAudioPatchbayParm
  • GetAudioChannelName
  • SetAudioChannelName
  • GetAudioPortMeterValue

Audio Mixer Commands

  • GetMixerParm
  • SetMixerParm
  • GetMixerPortParm
  • SetMixerPortParm
  • GetMixerInputParm
  • SetMixerInputParm
  • GetMixerOutputParm
  • SetMixerOutputParm
  • GetMixerInputControl
  • GetMixerOutputControl
  • GetMixerInputControlValue
  • SetMixerInputControlValue
  • GetMixerOutputControlValue
  • SetMixerOutputControlValue
  • GetMixerMeterValue

Automation Control Commands

  • GetAutomationControl
  • GetAutomationControlDetail
  • SetAutomationControlDetail

Advanced MIDI Processor (AMP) Commands

  • GetAMPGlobalParm
  • GetAMPAlgorithmParm
  • SetAMPAlgorithmParm
  • GetAMPOperatorParm
  • SetAMPOperatorParm
  • GetAMPCustomRoute
  • SetAMPCustomRoute
  • GetAMPLookupTable
  • SetAMPLookupTable
  • GetAMPPortInfo
  • SetAMPPortInfo

Snapshot Commands

  • GetSnapshotGlobalParm
  • GetSnapshotParm
  • SetSnapshotParm
  • GetSnapshotList
  • SetSnapshotList
  • CreateSnapshot
  • ApplySnapshot
  • ApplySnapshotList
Extras
  • getActiveScene
  • setActiveScene

Hardware Interface Commands

  • GetHardwareGlobalParm
  • GetHardwareParm
  • SetHardwareParm
  • GetHardwareValue
  • SetHardwareValue
Extras
  • getAutomaticFailoverState
  • setAutomaticFailoverState

FAQs

Last updated on 17 Dec 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc