| name | led-mapping-guide |
| description | Visual guide for APC Mini MK2 LED and button mapping. Use when user needs to know "which button", "pad location", "LED position", "coordinate to note", "note to coordinate", or wants to understand the physical layout of the controller. |
APC Mini MK2 LED Mapping Guide
Visual reference for button positions. For complete details, see reference.md.
Physical Layout
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ [SHIFT] [SCENE 1-8] โ
โ 112-119 โ
โ โโโโโฌโโโโฌโโโโฌโโโโฌโโโโฌโโโโฌโโโโฌโโโโ โโโโโ โ
โ โ56 โ57 โ58 โ59 โ60 โ61 โ62 โ63 โ โ112โ โ
โ โโโโโผโโโโผโโโโผโโโโผโโโโผโโโโผโโโโผโโโโค โโโโโค โ
โ โ...โ โ โ โ โ โ โ...โ โ...โ โ
โ โโโโโผโโโโผโโโโผโโโโผโโโโผโโโโผโโโโผโโโโค โโโโโค โ
โ โ 0 โ 1 โ 2 โ 3 โ 4 โ 5 โ 6 โ 7 โ โ119โ โ
โ โโโโโดโโโโดโโโโดโโโโดโโโโดโโโโดโโโโดโโโโ โโโโโ โ
โ โโโโโฌโโโโฌโโโโฌโโโโฌโโโโฌโโโโฌโโโโฌโโโโ โ
โ โ100โ101โ102โ103โ104โ105โ106โ107โ TRACK โ
โ โโโโโดโโโโดโโโโดโโโโดโโโโดโโโโดโโโโดโโโโ โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ FADERS โ
โ CC48-55 CC56 โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Coordinate Conversion
const coordToNote = (row: number, col: number): number =>
(row - 1) * 8 + (col - 1);
const noteToCoord = (note: number) => ({
row: Math.floor(note / 8) + 1,
col: (note % 8) + 1
} as const);
const xyToNote = (x: number, y: number): number => y * 8 + x;
LED Types
| Region | Notes | LED Type | States |
|---|
| Pads | 0-63 | RGB | 128 colors + custom RGB |
| Track | 100-107 | Red | 0=off, 1=on, 2=blink |
| Scene | 112-119 | Green | 0=off, 1=on, 2=blink |