惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

The GitHub Blog
The GitHub Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Microsoft Security Blog
Microsoft Security Blog
J
Java Code Geeks
S
SegmentFault 最新的问题
Apple Machine Learning Research
Apple Machine Learning Research
N
Netflix TechBlog - Medium
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园_首页
宝玉的分享
宝玉的分享
Google DeepMind News
Google DeepMind News
B
Blog RSS Feed
Hugging Face - Blog
Hugging Face - Blog
量子位
Blog — PlanetScale
Blog — PlanetScale
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
阮一峰的网络日志
阮一峰的网络日志
D
Docker
罗磊的独立博客
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
云风的 BLOG
云风的 BLOG
IT之家
IT之家
MyScale Blog
MyScale Blog
Microsoft Azure Blog
Microsoft Azure Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Tossed The T.V. but Kept the Remote? Here's how to NOT ge...
Brisk4t · 2026-06-01 · via DEV Community

This is a submission for the GitHub Finish-Up-A-Thon Challenge

What I Built

So what is this? Doesn't look like an API 👁️👁️

Tossed The TV Kept the Remote (TTVKTR) is a simple solution to the common problem of ending up with leftover Infrared(IR) Remotes from appliances long after the appliances are gone. They should be trivially easy to use with whatever you want, instead of ending up in landfills.

After finding an old Apple TV Remote in the archives (my attic) i realized there wasn't any quick and easy way to let me use it on my HTPC.

Now you see where the name came from...

This isn't as niche a problem as I've made it sound though, those "presentation clickers" that you can buy for waaay too much money online are the same thing. Except you've just added one more "thing that turns into e-waste the moment you lose the dongle" to your collection.

So, armed with a copilot subscription, I had to take things into my own hands.....

Reprogram the IR bindings on the fly

Custom Keybindings UI ⌨️

A browser-based editor for assigning remote buttons to keys, media controls, or custom actions.

Multiple Layers 📚

One physical remote can switch between several layers, so the same buttons do different things in different modes.

RGB LED Feedback 🔴🟢🔵

Layer-aware customizable RGB lighting that changes color per mode, giving clear visual feedback.

Complex Combos #⃣️

Support for multi-step or chorded inputs, including modifier combinations, repeated presses, and chained actions.


TTVKTR Editor WebApp

Demo

You can even bind a button to:

Win+R -> Spotify.exe -> Enter

Demo

To open Spotify using any IR remote you having lying around the house.

Table of Contents

  • So what is this?
  • Demo
  • How?
  • It's been done before right?
  • Eh.. I'll do it later (The Before)
  • But after I threw a bit of Github Copilot sauce at it....(The After)

How?

The TTVKTR uses a Raspberry Pi Pico (RP2040) and an IR receiver to read the codes sent by almost any commercial IR remote and maps them to USB Human Interface Device (HID) commands like Vol + , Play/Pause, or even custom combos.

Reprogram the IR bindings on the fly

PlatformIO 🧡

The PlatformIO VSCode extension allows seamless integration with AI agents like Github Copilot to make firmware development as easy as the web stuff (sometimes).

WebSerial 🔌

The Raspberry Pi Pico communicates with the WebApp over WebSerial, a Chromium exclusive feature that enables websites to communicate with hardware directly.

RP2040 🖥

The Raspberry Pi Pico uses the RP2040 a nifty MCU that has native USB support for dirt-cheap.

Infrared 🚨

Almost all appliance remotes use an infrared LED to transmit encoded values that act as the "codes" for the receiver.


Now I can flash any number of devices ONCE and program them in seconds for every remote I find around the house. Making combos is easy and each remote can have "Layers" indicated by the RGB LED on the RP2040 itself.

Customizing Combos

I also get a quick drag-to-edit layout that I can use to have a better visual representation of the button on the remote I'm actually trying to map.

Layouts

It's been done before right? Right????

I was surprised that this didn't exist already. An IR remote reader is one of the things any hobbyist tests out when they first get started.

There have been attempts like this one by wagiminator and Adafruit's pIRkey but they both need you to weave in and out of code just to paste in a string, and any complex behaviors are up to you. I wanted a way to quickly map the remote buttons to keys and combos like VIA based keyboards, AFAIK this is the only solution that removes that last bit of friction.

So some time ago, I pulled an XKCD 927 and built another less-code-but-not-really solution, and called it a day. Drop in a JSON with the IR codes and you're good to go. Then I got caught up with a different project and you know how it goes....

XKCD 927 - Standards

Then I saw the Github Finish-Up-A-Thon post and it reminded me of someone who has many incomplete weekends projects that could be complete if they just put in a few more hours, so here I am.

The Comeback Story

Eh.. I'll do it later (The Before)

Let's just say once I got the bare minimum working, I got.... distracted.

Repo Before

The repository existed, I could use my Apple Remote and that was about it. The settings were simply a json file you dropped onto the Raspberry Pi Pico's storage partition. That's not bad but it also requires some manual legwork that doesn't make it any better than the solutions I pointed out before.

This is how editing the buttons looked like before (not very pretty)

{
  "ir": {
    "modeChangeCode": "0xC40387EE",
    "receivePin": 1,
    "handleRepeat": true,
    "repeatInitialDelayReports": 5
  },
  "led": {
    "pin": 16,
    "keyboardModeColor": "0x290118",
    "consumerModeColor": "0x012329",
    "brightnessPercent": 10
  },
  "modes": [
    {
      "name": "Layer 1",
      "slots": [
        {"irCode": "0xC40A87EE", "type": "keyboard", "key": "0x61"},
        {"irCode": "0xC40C87EE", "type": "keyboard", "key": "0x62"},
        {"irCode": "0xC40987EE", "type": "consumer", "key": "0x00B5"}
      ]
    },
    {
      "name": "Layer 2",
      "slots": [
        {"irCode": "0xC40687EE", "type": "consumer", "key": "0x00B6"},
        {"irCode": "0xC45C87EE", "type": "keyboard", "key": " "}
      ]
    }
  ]
}

The firmware was there, but it was very much a proof-of-concept.

My Experience with GitHub Copilot

But after I threw a bit of Github Copilot sauce at it.... (The After)

Repo After

Before

Settings Before

After

Customizing Combos

Editing Keybindings 1⃣️

Instead of having to record the codes in the serial console and copy them over manually, just click "learn" and press the button on the IR remote.

Runtime Config 2⃣️

The old version required you to still flash the Raspberry Pi for the smallest of changes like layer colors, now you can see those changes reflected live.

Adding Layers and Layouts 3⃣️

Layouts and Layers simplify the "what was this again?" that happened when you looked at the json by itself. Now you can spot a distinct IR remote simply by its button layout.

Combos 4⃣️

Complex commands like the spotify opener script simply weren't a thing before, now you can bind an IR button to whatever you want.


I don't like working with UI. Just never been a "gotta center this div with my own two hands" kinda guy. Github Copilot let me get the UI stuff done without me having to do any div-centering. A few choice prompts about how I wanted the app to look, what it did and how the protocol should work and I had a functional GUI up and running.

"Add a freely editable button layout where I can drag around the IR code buttons and persist them on the device as relative positions. Layouts are GUI helpers and do not interact with the layer:code mappings so they do not need to be parsed, store them as a web-serial serializable representation".

This is what editing buttons looked like a few prompts later
Customizing Layouts

Adding features, sliders and toggles in the UI was equally simple, some of the firmware functions were also just as trivial and refactoring was a breeze.

The remote that was headed for a landfill now has a purpose again, not bad for a weekend project and some tokens.