Monorepo for Aesthetic.Computer aesthetic.computer
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

docs: update notepat hold comments to reference F11/F10 not F8

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

+3 -2
+3 -2
fedac/native/pieces/notepat.mjs
··· 28 28 let endArmed = false; // true while End key is held (arm per-key recording) 29 29 let perKeyRecording = null; // key currently recording in per-key mode 30 30 31 - // Hold/latch: F8 captures currently-held notes and keeps them sounding 31 + // Hold/latch: F11 (green pickup) engages, F10 (red hangup) clears 32 + // While engaged, any new notes auto-latch (sustain on key release) 32 33 let holdActive = false; // true when hold is engaged 33 34 let heldKeys = new Set(); // keys that are latched (won't stop on key-up) 34 35 ··· 330 331 entry.midiNote = noteToMidiNumber(entry.note, entry.octave); 331 332 entry.midiChannel = 0; 332 333 sounds[key] = entry; 333 - // Auto-add to hold if F8 latch is active 334 + // Auto-add to hold if F11 latch is active 334 335 if (holdActive) heldKeys.add(key); 335 336 system?.usbMidi?.noteOn?.(entry.midiNote, velocityToMidi(velocity), entry.midiChannel); 336 337 sendUdpMidiEvent(system, "note_on", entry.midiNote, velocityToMidi(velocity), entry.midiChannel);