Not A FrogPad But Close

While you might think one-handed keyboards are a niche item, if you have reduced function in one hand or you only have one hand, they are pretty important. [Kian] was getting ready for surgery that would put his left arm out of commission for a while, which spurred the construction of a one-handed keyboard inspired by FrogPad.

There was a time when creating a new keyboard would have been a significant task. These days, it is reasonably easy and [Kian] simply repurposed an existing kit for a split keyboard. Using just half the board was easy since it is made in two parts already.

There have been many attempts at building effective one-handed input devices over the years, and the circa 2002 FrogPad is one of the better devices. Like most one-handed keyboards, it uses layers. The top layer has the most common keystrokes to minimize the number of layer changes required to type common text.

Continue reading “Not A FrogPad But Close”

Printable Keyboard Dock Puts Steam Deck To Work

Whether or not you’re into playing video games, you have to admit, that the Steam Deck is a pretty interesting piece of hardware. We’ve seen hackers jump through all sorts of uncomfortable hoops to get Linux running on their mobile devices in the past. The fact that you can pick up a fairly powerful x86 handheld computer right now for a reasonable amount of money is certainly exciting. The Linux steam deck gets even more enticing when you consider the software support it enjoys thanks to its large and vibrant user community. No wonder we’ve started to see them dotting the workbenches during Hackaday Supercon.

If there’s a downside, it’s that the Steam Deck was very clearly designed to be a handheld gaming system, not a portable computer. Sure you can plug in an external monitor and keyboard, but things can quickly become ungainly. This is why a printable dock from [a8ksh4] caught our eye.

It’s officially designed to let you mate the Steam Deck with the Corne keyboard, a split ergonomic design that’s graced these pages a few times in the past. [A8ksh4] has included links for all the hardware you’ll need outside the printed parts, from the hinges and keyboard PCBs, all the way to the keycaps and stainless steel screws. If you’re looking for a turnkey experience, this is it.

Continue reading “Printable Keyboard Dock Puts Steam Deck To Work”

Enthusiast Seeks Keycap Designer For Alphasmart NEO

If you were an American kid in the 1990s, chances are good that you may have been issued a little word processing machine by your school called an Alphasmart. These purpose-built machines created by an offshoot of Apple engineers were way cheaper than the average laptop at the time, and far more prepared to be handed over to the average child. The salesmen used to drop-kick them at trade shows to demonstrate their toughness.

Today, these machines are revered by writers, especially those who participate in NaNoWriMo, a yearly event in which people attempt to write the first draft of a novel during the month of November.

The Alphasmart NEO, NEO2, and Dana models are of particular note because they each have a really nice scissor-switch membrane keyboard. Yeah, that’s right. A really nice membrane keyboard.

The problem is that things wear out with time. As you may have guessed, Alphasmart is no longer around, and so they can’t offer replacement keycaps. Can you help by creating a 3D model? [E.F. Nordmed] and many others would sure appreciate it.

You may remember the Alphasmart NEO from these very pages. We sure do love them for distraction-free writing.

Inputs Of Interest: The Svalboard Could Be Your Salvation

You know, sometimes dreams really do come true. When I told you about the DataHand keyboard almost four years ago, I never imagined I’d ever get to lay my hands on anything even remotely like it, between the original price point and the fact that they really, really hold their value. But thanks to [Morgan Venable], creator of the Svalboard, I can finally tell you what it’s like to type with your digits directionalized.

If you don’t recall, the DataHand was touted to be a total revolution in typing for RSI sufferers. It debuted in 1993 for a hefty price tag of about $1,500 — pretty far out of reach of the average consumer, but well within the budgets of the IT departments of companies who really wanted to keep their workers working. You want minimum finger travel? It doesn’t get more minimal than this concept of a d-pad plus the regular down action for each finger.

The Svalboard aims to be the new and improved solution for something that barely exists anymore, but still has a devoted following. Although the DataHand was built on a gantry and adjustable using knobs, the smallest fit possible on the thing is still rather big. Conversely, the Svalboard is fully customizable to suit any size hand and fingertip.

Continue reading “Inputs Of Interest: The Svalboard Could Be Your Salvation”

[Usagi] Whips A Chain Printer Into Shape

What does it take to get a 47-year-old printer working? [Usagi Electric] shows us it’s not too hard, even if you don’t exactly know what you’re doing.  When we last left this project, he’d tested and verified his power supply was working. This week, after a bit of cleaning, it was time to dig into the mechanics.

If you haven’t seen a chain printer in action before, definitely check one out. They’re big, loud, and sound a bit like a turbine when they spool up. The type chains on these printers never stops moving. This means the printer has to know exactly where a particular letter is before launching one of 66 hammers at it. If the timing is off, parts will fly. To the average computer user, they’re quite intimidating.

Thankfully [Usagi’s] printer was in pretty good shape. When he flipped the big power switch, there was plenty of strange noises, culminating in the test pattern of dollar signs. Probably an early reminder to customers that they needed to order more print supplies.

Continue reading “[Usagi] Whips A Chain Printer Into Shape”

Human-Interfacing Devices: Packing For The Descriptor Heist

We started with figuring out HID descriptors a week ago, and I’ve shown you how to send raw HID packets using a MicroPython fork. We do still have the task in front of us – making a touchscreen device. For that, let’s give you the tools to capture an existing descriptor from a touchscreen, then show you how to tweak it and how it turns out in the end.

Packing For The Heist

When it comes to this kind of adventure, we can’t go without tools and weapons – it could be dangerous! Without them, you could even abandon your project halfway! Here’s enough high-precision tools and ammunition to last you through whatever obstacles you might encounter. Except for the web-based tools, these tools are for Linux, but please remember that you can always use a virtual machine or a Raspberry Pi. Nobody would use Windows for a heist anyway, what’s with all the telemetry and such.

The first tool is for reading descriptors – we need one to learn from, it’s just like a keycard you can flash to a security guard and scan at the vault entry. Of course, with RFID, you want to have enough examples, compare bits between a few cards and all. For now, HID descriptors don’t have authenticity checks, but it looks like that might just change in the future. Leave it to Apple and Microsoft to add them, as usual. On Linux, seeing descriptors is simple – as root, go into /sys/bus/usb/devices/, find your device by its lsusb device tree path, then follow the directory with the VID/PID in it. That directory will contain a report_descriptor file – hexdump it. The entire command could look like this:

sudo hexdump -v -e '/1 "%02X "' /sys/bus/usb/devices/3-6.2/3-6.2\:1.1/0003\:0C40\:8000.0022/report_descriptor

Again, you might need root to even find this path, so use sudo -i if you must. The format string in the hexdump command gives you parser-friendly output. Specifically, for parsing, I use this webpage – it’s wonderful, even adding tabs that delineate different sections of the descriptor, making its output all that more readable! You can also save this webpage locally, it’s a very neat tool. Other than that, you can try other local tools like this one!

Continue reading “Human-Interfacing Devices: Packing For The Descriptor Heist”

Altoids Tin Keyboard Is A Breath Of Fresh Air

Well, here’s a fresh idea! [flurpyflurples] is back from hiatus with the Mintboard, a 40% that fits inside of an Altoids tin. Who could ask for more than a rugged little Bluetooth keyboard with a built-in cover that fits in your pocket?

This build started with meticulously measuring the tin to figure out what kind of switches could be used. At first, this was going to be a 60% keyboard, but after a lot of design decisions and switch comparisons, [flurpyflurples] settled on a certain micro switch spaced at 7.3mm for a 40% layout. Then it was time to design a PCB.

Although [flurpyflurples] tends to use Arduino Pro Micros in their builds, they went with the Nice! Nano this time for the Bluetooth capabilities. This means that they had to program it with ZMK instead of QMK, but found that QMK knowledge transfers rather nicely.

Let’s talk about those lovely legends. The keycaps are 3D printed of course, and the legends were cut out on a Cricut machine. The best part is that sealant — [flurpyflurples] used a few drops of UV nail polish top coat and cured it with light.

We think this looks and sounds fantastic, and would really like to know how to get such clean cutouts. According to [flurpyflurples] and the end of the build/demo video you’ll find below the break, the action is a lot like a Blackberry keyboard.

Continue reading “Altoids Tin Keyboard Is A Breath Of Fresh Air”