Daniel's been making his periodic pilgrimage to US Amazon again — because Israeli e-commerce, as he puts it, is a test of sainthood. This time he wanted a foot pedal for transcription. He asked Claude for a Linux-compatible recommendation, and Claude pointed him to an Olympus model. He's got fond memories of Olympus from college — their DVRs, specifically — and was surprised they're even still on the market. But Claude was adamant this was the one: pure USB HID, no driver headaches. The pedal arrives, and there in the box is an 8-pin DIN connector bundled with a USB adapter. His first thought was he'd been sent something from 1995. But it works. Perfectly. And that got him wondering: why do proprietary connectors still exist in 2026? Is there an actual electrical case for them? And for that matter... what is Olympus even doing these days, besides selling foot pedals to people who thought the company disappeared?
I love this question. I mean, first of all, Daniel opening a box in 2026 and finding an 8-pin DIN — that's like finding a coupon for a free AOL trial CD. But it worked. And that's the thing. It's not a bug.
It's a design choice that looks like a time capsule.
And the foot pedal is the perfect specimen for understanding why. It's three switches in a metal box. That's the entire device. Three switches, no power draw, no data to speak of — just on, off, and which pedal you pressed. You could build this thing with parts from a 1970s Radio Shack. And Olympus still sells it as a current model.
So let's start with the thing itself — this foot pedal that looks like it came from a 1995 catalog but shipped in 2026.
The model Daniel almost certainly has is the Olympus RS-28H or one of its close cousins. It's a triple-pedal unit — forward, rewind, and play typically — and it's built like a small armored vehicle. Solid metal chassis, probably weighs a couple pounds. The key detail, and this is where the connector story starts, is that there is no circuit board inside the pedal. None. You open it up and what you find is three physical switches wired directly to the pins of that 8-pin DIN connector. That's it.
So the pedal itself is a passive device.
Completely passive. The DIN connector is just bringing out raw switch closures. When you press the middle pedal, pin four connects to pin five — or whatever the Olympus pinout happens to be. There's no chip, no firmware, no microcontroller. The pedal doesn't know what a computer is. It's just wires.
Which means the USB adapter in the cable is doing all the thinking.
Right. And that's the elegant part. The adapter cable contains a small microcontroller — probably something like an ATmega or a dedicated USB HID chip — that reads the state of the DIN pins and translates that into standard USB HID keyboard events. So when you press the left pedal, the adapter sends an F1 keystroke. Middle pedal, F2. Right pedal, F3. Or you can reprogram it to send whatever key combination your transcription software expects. The computer sees a keyboard. That's it.
And that's why Claude recommended it for Linux.
It's the safest possible recommendation. USB HID — Human Interface Device — is the most boring, most universally supported USB profile in existence. Every operating system since Windows 98 has had a built-in HID driver. Linux, macOS, Chrome OS, Android, even some embedded systems. If your device presents as HID, it just works. No vendor driver to install, no kernel module to compile, no nothing. Claude knew exactly what it was doing.
What I find interesting is that this is actually the opposite of what most people assume when they see a proprietary connector. The instinct is to think the manufacturer is trying to lock you in — you have to buy their cable, their adapter, their ecosystem. But in this case...
In this case the DIN connector predates USB by decades. This isn't a new proprietary thing Olympus invented to trap you. It's the old standard they never abandoned. And there's a genuine engineering reason for it. To understand why they kept it, we need to look at what's actually inside the pedal — and what's not inside it.
Okay. Walk me through the electrical case for DIN over USB.
USB is complicated. People forget this because it's so seamless now, but under the hood, USB is a full protocol stack. It's a master-slave architecture — the host computer is in charge, and it polls every connected device on a regular schedule. Even if nothing is happening. Even if your foot pedal hasn't been pressed in three hours, the host is still sending polling packets saying "any changes? any changes? any changes?" The device has to respond. It has to enumerate when first connected — that's the handshake where the device says "hello, I'm a keyboard, here are my capabilities." There's power negotiation, there's a driver stack, there's error handling. All of this happens in silicon, in a USB controller chip on the device side.
And none of that is free.
None of it is free. It costs money — the microcontroller, the PCB, the firmware development. It costs power — tiny amounts, but nonzero. It costs reliability — every chip is a failure point. And it costs latency. The polling interval for a USB HID device is typically one millisecond for low-speed USB, eight milliseconds for full-speed. That's fast enough for a foot pedal, absolutely. But it's not zero. With a direct DIN connection, the latency is the speed of electrons through copper. There is no protocol. There is no polling. The switch closes, the signal arrives.
So for a transcriptionist who's hitting that pedal hundreds of times a day, the DIN approach is actually...
It's simpler, cheaper, and more reliable at the hardware level. The pedal itself has no electronics to fail. No firmware to corrupt. No USB controller to glitch out because of a ground loop or an electrostatic discharge. The smart part — the microcontroller that speaks USB — lives in the adapter cable. And cables are replaceable. If the USB adapter dies, you buy a new cable for fifteen or twenty dollars. The pedal is fine. It was fine in 1995 and it'll be fine in 2045.
That's a workhorse design philosophy. Put the failure-prone part in the disposable component.
And this pattern shows up all over professional audio equipment. Think about XLR connectors — those three-pin locking connectors you see on microphones and studio monitors. XLR has been standard since the 1950s. It's balanced, it's locking, it's field-serviceable, and it carries analog audio with no protocol whatsoever. You can solder an XLR cable in five minutes with a ten-dollar iron. Try field-repairing a USB-C cable.
I've opened one. There are like twenty-four tiny pins in there and half of them are doing things I don't understand.
And that's the thing. USB-C is a marvel of engineering — it carries power, data, video, audio, all over one connector. But that complexity is a liability in environments where gear gets kicked, dropped, plugged in blind, and expected to work for twenty years. A broadcast studio or a hospital transcription department doesn't need reversible connectors and alt-mode negotiation. They need a connector that works the first time, every time, and can be repaired with basic tools.
So the DIN connector persists in pro audio and medical transcription for the same reason XLR persists in broadcast.
Right. And it's not just audio. Think about industrial equipment. RS-232 — the old serial port standard — is still everywhere in factories, laboratories, and medical devices. DB9 connectors, the kind that used to be on the back of every PC. You can still buy brand-new industrial computers with native serial ports. The reason is the same: RS-232 is electrically simple, it's been understood for sixty years, and it doesn't require a driver stack. You send bytes, they arrive. USB-to-serial adapters exist, but they add a layer of translation that can introduce timing issues. For applications where microsecond precision matters — like controlling a CNC machine or a lab instrument — direct serial is still preferred.
And the foot pedal is the extreme case of that. It's not even sending bytes. It's sending switch closures.
Three switches. That's the whole device. And here's where it gets philosophically interesting. USB adds a computer to a switch. That's what USB is — it's a computerized interface. The DIN connector is just wires. When you press the pedal, the wire closes. You don't need a computer for that. You don't need enumeration, you don't need polling, you don't need a driver. The fact that we've standardized on USB for everything doesn't mean USB is the best solution for everything. It means it's the most convenient solution for most things.
And the DIN-to-USB adapter is a compatibility layer that gives you the best of both worlds. The pedal stays simple and indestructible. The adapter handles the modern interface.
And that adapter is the part that evolves. Here's what I find elegant about this design. The pedal Daniel bought is electrically identical to one Olympus was selling in 1995. The switches, the wiring, the DIN connector — unchanged for thirty years. But the adapter cable has evolved. Early versions probably used a serial-to-USB converter, because older transcription systems used RS-232. Then as USB HID became standard, the adapter switched to HID emulation. And if USB-C eventually replaces USB-A entirely, Olympus can just update the adapter again. The pedal doesn't change. The pedal doesn't care.
That's the opposite of planned obsolescence.
It's accidental permanence. And it's not what Olympus set out to do — it's just what happens when you design something so simple that there's nothing to break. Compare this to a native USB foot pedal, like the Scythe or VEC models. Those have a microcontroller inside the pedal itself. The USB port is soldered directly to a PCB. If the USB connector gets yanked and breaks a solder joint — which happens constantly with foot pedals because they're on the floor and people kick them — you're opening the pedal, you're desoldering, you're hoping the PCB traces aren't damaged. If the microcontroller dies, the whole unit is e-waste. And if USB-A ports disappear from computers, you need an adapter anyway, or you replace the whole pedal.
So the DIN approach is actually more future-proof, not less.
And it's not future-proof because Olympus planned it that way. It's future-proof because the pedal is so simple it can't become obsolete. It's just switches. Switches don't have a protocol version. Switches don't need a firmware update.
Which brings us to the ecosystem question. Because the electrical case for DIN is solid — but that doesn't explain why a company like Olympus still sells this pedal as a current product. Especially given what Olympus has become.
Right. This is where the story takes a turn. Because the Olympus that Daniel remembers from college — the Olympus of DVRs and microcassette recorders and cameras — that company doesn't exist anymore.
Wait. Really?
Olympus sold its camera division in 2020. The entire imaging business — cameras, lenses, accessories — went to a private equity firm called Japan Industrial Partners. The camera brand is now called OM System. That iconic Olympus camera Daniel probably remembers? Not Olympus anymore.
So what is Olympus now?
Olympus is a medical technology company. And not a small one. They're one of the world's largest manufacturers of endoscopes and surgical imaging systems. We're talking about the EVIS EXERA III platform — gastrointestinal scopes, surgical visualization systems, bronchoscopes. These are fifty-thousand-dollar-plus medical devices that hospitals buy. Olympus controls something like seventy percent of the global gastrointestinal endoscope market. Their main business is not foot pedals. It's not even close.
So the foot pedal division is...
A legacy business. A tiny remnant of the old Olympus audio division that made dictation equipment for doctors and lawyers. And here's the irony: that legacy business survives precisely because Olympus's main customers — hospitals and medical practices — still use transcription. Radiologists dictate findings. Pathologists dictate reports. Surgeons dictate operative notes. And they've been using Olympus dictation systems for decades. The foot pedal is part of that workflow.
So the pedal outlived the division that created it, and now it's a footnote in a medical technology company.
A footnote that still sells. Because if you're a hospital that standardized on Olympus dictation equipment in 2005, and your transcriptionists have been using the same foot pedals for twenty years, and the pedals still work, and the only thing you ever need to replace is the USB adapter cable — why would you switch? There's no business case to retrain staff, replace inventory, and deal with compatibility issues across Windows, macOS, and whatever thin client the hospital IT department has locked down this year.
The DIN connector is a known quantity. It works, it's reliable, and the adapter handles the translation.
And Olympus, the medical giant, probably spends more on the catering for a single endoscopy sales conference than they do on the entire foot pedal product line. It's not worth redesigning. The tooling for the metal chassis is paid off. The DIN connector is a commodity part. The switches are commodity parts. The adapter cable is the only thing that ever gets updated, and that's a simple microcontroller swap. This product probably has profit margins that would make Apple jealous, and it requires essentially zero engineering investment.
The pedal is a fossil, but it's a fossil that prints money.
It's a fossil that's genuinely better at its job than the modern alternative. That's the part that I think surprises people. We're trained to assume that newer is better, that USB-C is progress, that everything should converge on one connector. And for most consumer devices, that's true. But for a three-switch foot pedal, the DIN connector isn't a compromise — it's the optimal design. The optimal design just happens to be thirty years old.
What about the medical devices Olympus actually cares about? Do those use proprietary connectors?
Oh, absolutely. But for entirely different reasons. An endoscopy system like the EVIS EXERA III has a video scope that connects to a processing unit. That connector carries high-bandwidth digital video, light from a xenon or LED source, sometimes irrigation channels, sometimes instrument channels for biopsy forceps. These connectors are proprietary and they're expensive — a single scope can cost thirty thousand dollars. The connector has to survive repeated sterilization — autoclaving at high temperature and pressure, chemical disinfectants. It has to be absolutely reliable because if the video cuts out during a colonoscopy, someone's health is at risk. And it has to be single-use or limited-use in some cases because of infection control.
The proprietary connector there is about sterilization, reliability, and bandwidth — not about simplicity.
Right. It's the opposite of the foot pedal. The foot pedal's DIN connector is simple to the point of being primitive. The endoscope connector is a precision-engineered optical and electrical interface that has to survive being baked in an autoclave. Both are proprietary, but for completely different reasons. And both persist because the cost of switching — in dollars, in regulatory recertification, in retraining — is enormous.
There's a broader pattern here. We've talked about this before, I think — the arc of deprecation, the way old tech survives in high-stakes environments. Aviation still uses technologies from the eighties. Military systems run on processors that are decades old. And now we've got a foot pedal that's electrically identical to one from 1995, still in production, still recommended by AI assistants.
Recommended correctly. Claude didn't make a mistake. Claude looked at the requirements — Linux compatibility, reliability, USB HID — and identified the pedal that best met those requirements. The fact that it uses a DIN connector internally is irrelevant to the user. It presents as USB HID. It works. The connector is an implementation detail.
Which is kind of the whole point. The connector doesn't matter if the interface is standard.
That's the lesson of the foot pedal. We've spent twenty years arguing about connectors — USB-A versus USB-C, Lightning versus USB-C, proprietary versus standard. But the connector is just the physical layer. What matters is the protocol. The Olympus pedal uses a DIN connector physically, but it speaks USB HID. The physical connector is the wrong thing to focus on.
Unless the physical connector is the thing that makes the device indestructible.
Well, yes. That's the tension. The DIN connector is more robust, more repairable, and electrically simpler. But it's not USB. So Olympus bridges the gap with an adapter. And the result is a product that's been on the market for thirty years and still works with every modern operating system.
Where does this leave us with the EU's USB-C mandate? Because that's the elephant in the room. The EU has been pushing for USB-C as a common charger standard for small electronics. What happens to devices like this foot pedal?
The mandate primarily targets devices that charge over a cable — phones, tablets, cameras, headphones, portable speakers. The foot pedal doesn't charge. It doesn't even draw power from the USB bus in any meaningful way — the adapter microcontroller uses a trickle, but the pedal itself is passive. So it probably falls outside the scope of the mandate. But even if it didn't, Olympus could just ship a DIN-to-USB-C adapter instead of DIN-to-USB-A. The pedal doesn't change.
The pedal never changes.
The pedal is eternal. And I think that's what Daniel was really reacting to when he opened the box. It's not just that the connector looks old. It's that the entire design philosophy is from a different era. This is a product built before anyone had heard of planned obsolescence. It was designed to be a tool, not a gadget. And tools don't get redesigned every two years. Tools get used until they break, and this one doesn't break.
The answer to Daniel's question — do manufacturers still favor their own connections in 2026 — is yes, but not for the reasons people assume. It's not always about lock-in. Sometimes it's about a design that was right the first time.
Sometimes it's about a product that the manufacturer has basically forgotten about, but it keeps selling because it's too reliable to kill. The Olympus foot pedal is the cockroach of the peripheral world. It'll outlive us all.
Speaking of people who have actually used these pedals for decades...
Hilbert: Nineteen ninety-eight. Medical records transcription. Third floor of a building in Hartford that had one elevator and it broke every August.
Wait, you —
Hilbert: Olympus foot pedal. Same DIN connector. Same three pedals. Ours were beige. I don't know if they still make the beige ones.
I don't think they do.
Hilbert: Shame. The beige hid the coffee stains better. We had twelve transcriptionists in that office, each with one of these pedals. The pedals sat on the floor under the desks. They got kicked. They got coffee spilled on them. One of them got run over by an office chair — the kind with the big pneumatic cylinder — and it just kept working. The only thing that ever failed was the adapter cable. We kept a box of spares in the supply closet. Fifteen dollars each, maybe. This was when the adapters were still serial-to-USB. Big chunky things with a DB9 on one end.
You were using RS-232 to USB conversion.
Hilbert: For a while. Then we got HID adapters when the software updated. The pedals didn't change. Same pedals. We just swapped the cable.
The pedal doesn't know what a computer is.
Hilbert: It's three switches in a box. That's the whole thing. You don't need USB for switches. USB adds a computer to a switch. The DIN connector is just wires. When you press the pedal, the wire closes. That's the whole thing. USB would make it worse.
That's exactly what we've been saying. The simplicity is the feature.
Hilbert: I still know people at that company. They're still using the same pedals. Twenty-eight years. The transcription software has changed three times. The computers have been replaced five times. The pedals are original. The only difference is the USB adapter has been swapped twice. The pedal doesn't know any of this happened. It's just three switches in a box.
Twenty-eight years.
Hilbert: They'll go another twenty-eight. There's nothing to break. The switches are rated for something like a million cycles. The metal chassis is solid. The DIN connector — you know those things were designed in the 1970s for audio equipment? They were built to be plugged and unplugged thousands of times. The pins are thick. They don't bend. Try that with a micro USB port.
Micro USB was terrible. The little retention clips would wear out and the cable would just fall out.
Hilbert: DIN doesn't have retention clips. It has friction. Friction doesn't wear out the same way. And if it does, you clean the pins with alcohol and it's fine.
The pedal that Hilbert's old company still uses is the same one Daniel just bought. That's a twenty-five-plus-year product lifecycle.
It's not because anyone planned it that way. It's because the design was so simple that there was nothing to obsolete. The pedal is a switch. The computer industry spent three decades reinventing the connector, and the switch just sat there, unchanged, waiting for the adapter to catch up.
What does that tell us about where connectors are headed? Because we're in this moment where USB-C is becoming the legal standard, at least in Europe. The mandate is real. And yet here's this device that sidesteps the whole thing by being too simple to regulate.
I think it tells us that standardization is great for the things that benefit from standardization — charging, data transfer, video output. But there's a whole category of devices where the connector isn't the point. The foot pedal is the extreme case. But think about laboratory equipment, industrial sensors, medical devices, broadcast gear. These are products where the connector is chosen for electrical reasons, or reliability reasons, or regulatory reasons, or just because the product has been in production for forty years and the tooling is paid off. The USB-C mandate isn't going to make a mass spectrometer redesign its data port.
Hilbert: The mass spectrometer doesn't care about your mandate. It cares about not introducing ground loops that would ruin a fifty-thousand-dollar measurement.
Of course you've worked with mass spectrometers.
Hilbert: Briefly. The connectors were proprietary. They cost four hundred dollars each. They were worth it.
That's the other side of this. Proprietary connectors in industrial and medical equipment aren't always about lock-in. Sometimes they're about solving a specific engineering problem that a general-purpose connector can't solve. Ground loops, electromagnetic interference, sterilization compatibility, pin count, locking mechanisms, cable strain relief. USB-C is a miracle of miniaturization, but it's not designed to be kicked around on a factory floor for twenty years.
The future of connectors isn't one connector to rule them all. It's a split. Consumer devices converge on USB-C — that's happening, the mandate ensures it. But industrial and professional equipment keeps its specialized connectors because the requirements are different.
The foot pedal sits right at the boundary. It's a consumer device — you can buy it on Amazon for a hundred dollars. But it's designed like industrial equipment. It's a professional tool that happens to be sold at retail. And that's why it confuses people. It looks like a relic, but it's actually a category error. We're judging it by consumer standards when it was built to professional standards.
Daniel's prompt mentioned that these proprietary connections show up disproportionately in hardware that earns a reputation as an everyday workhorse. He was onto something.
He was exactly right. The workhorse devices are the ones where reliability matters more than aesthetics. Where the user would rather have something that looks like it's from 1995 and works every time, than something that looks sleek and fails on a deadline. Transcriptionists don't care what the pedal looks like. They care that it works. And this one works.
If someone's listening to this and they need a foot pedal for transcription, the Olympus with the weird DIN connector is actually the smart choice.
It's the smart choice precisely because of the weird DIN connector. That connector is the reason the pedal will still work in 2050. The USB-C native pedal you buy today might be e-waste in five years when the port gets yanked or the firmware becomes incompatible with Windows 14 or whatever we're running. The Olympus pedal will just need a new adapter cable.
And Claude knew this.
Claude knew this. The AI looked at the problem — Linux compatibility, reliability, longevity — and recommended the pedal with the ancient connector. Because the AI doesn't have aesthetic preferences. It doesn't care that the DIN connector looks old. It cares about the HID profile and the failure rate.
Which is maybe the most 2026 part of this whole story. An AI assistant recommended a product from 1995 because it's objectively better at its job.
And it was right.
If you've got a weird prompt about a connector, a company, or a piece of tech that refuses to die, send it to show at my weird prompts dot com. We'll dig into it.
This has been My Weird Prompts. Thanks to our producer Hilbert Flumingtop for keeping this show running — and apparently for keeping a box of serial-to-USB adapters in a supply closet in Hartford.
We'll be back soon.