Skip to content

Commit

Permalink
refactor: rename LP Mini to LP Mini Mk2 to avoid confusion with mk3
Browse files Browse the repository at this point in the history
  • Loading branch information
twitwi committed Apr 22, 2022
1 parent 8a15c6a commit 8db0adb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/app/devices/known-devices/known-devices.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Controller, Selector } from '../device/device.types';
import { novationLaunchpadX } from './novation-launchpad-x';
import { novationLaunchControlXl } from './novation-launch-control-xl';
import { novationLaunchpadMini } from './novation-launchpad-mini';
import { novationLaunchpadMiniMk2 } from './novation-launchpad-mini-mk2';
import { novationLaunchpadMiniMk3 } from './novation-launchpad-mini-mk3';

/**
Expand All @@ -10,6 +10,6 @@ import { novationLaunchpadMiniMk3 } from './novation-launchpad-mini-mk3';
export const knownDevices: (Selector | Controller)[] = [
novationLaunchpadX,
novationLaunchControlXl,
novationLaunchpadMini,
novationLaunchpadMiniMk2,
novationLaunchpadMiniMk3,
];
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import { Selector, DeviceCategory } from '../device/device.types';

/**
* Novation Launchpad Mini
* Novation Launchpad Mini Mk2
*
* @see http://leemans.ch/latex/doc_launchpad-programmers-reference.pdf
*/
export const novationLaunchpadMini: Selector = {
export const novationLaunchpadMiniMk2: Selector = {
category: DeviceCategory.selector,
manufacturer: 'Focusrite A.E. Ltd',
name: 'Launchpad Mini',
name: 'Launchpad Mini MK2',
channels: {
input: 'all',
output: 1,
Expand Down

0 comments on commit 8db0adb

Please sign in to comment.