Clean up LED driver + rename USB to JOC Midi

- Removed flash_sysex/flash_all/flash_one (conflicted with heartbeat)
- Simplified flash_activity: LED 0 white 50ms, restores properly
- Heartbeat only on LED 9 when no activity
- USB renamed: Manufacturer=JOC, Product=JOC Midi
This commit is contained in:
ash
2026-06-25 23:47:39 +00:00
parent 6ccd28362f
commit a281eaa46e
3 changed files with 5 additions and 25 deletions
+3 -3
View File
@@ -13,9 +13,9 @@ UsbMidiTransport::~UsbMidiTransport() {
bool UsbMidiTransport::begin() {
Serial.println("[MIDI] Setting up USB MIDI device...");
TinyUSBDevice.setManufacturerDescriptor("Novation");
TinyUSBDevice.setProductDescriptor("Launchpad X");
TinyUSBDevice.setSerialDescriptor("LPX00001");
TinyUSBDevice.setManufacturerDescriptor("JOC");
TinyUSBDevice.setProductDescriptor("JOC Midi");
TinyUSBDevice.setSerialDescriptor("JOCMIDI001");
TinyUSBDevice.begin(0);
if (!usb_midi.begin()) {