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

推荐订阅源

H
Help Net Security
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 【当耐特】
Microsoft Azure Blog
Microsoft Azure Blog
Google DeepMind News
Google DeepMind News
Apple Machine Learning Research
Apple Machine Learning Research
有赞技术团队
有赞技术团队
Y
Y Combinator Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
爱范儿
爱范儿
L
LangChain Blog
IT之家
IT之家
酷 壳 – CoolShell
酷 壳 – CoolShell
MongoDB | Blog
MongoDB | Blog
Hugging Face - Blog
Hugging Face - Blog
G
Google Developers Blog
T
Tailwind CSS Blog
Engineering at Meta
Engineering at Meta
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
宝玉的分享
宝玉的分享
博客园 - 三生石上(FineUI控件)
D
DataBreaches.Net
Recent Announcements
Recent Announcements
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

seg6

we finally learned to center a div, then browsers added sidebars my server is a phone now bringing the modern web to the original ipad mini — seg6 concurrent device registration without redis — seg6 building a software protection system from first principles — seg6 hijacking chrome's network tab to debug an electron app — seg6 cross-origin iframes without third-party cookies — seg6 making macos bearable — seg6 hello, world! — seg6
gave my rgb fans a job: 38-pixel screen mirror — seg6
2025-12-24 · via seg6

I recently picked up a second-hand build with a Ryzen 7 7800X3D and an RTX 5070 Ti. It’s a massive upgrade for me, and I’ve been enjoying throwing heavy workloads at it.

The Setup

The case came with RGB everywhere: RAM, pump, and the fans. I wanted to do something with it other than a rainbow cycle or static color, so I wrote a Python script to mirror the screen onto the components. The idea is that blue sky at the top of the frame means the top components go blue, while lava at the bottom means the bottom fans go red.

the wiring constraint

The catch is that the fans are daisy-chained; meaning bottom intake, top exhaust, and rear exhaust all on one controller. I can’t address them individually, so if I send a color, the entire perimeter lights up at once. This means no proper pixel map is possible (at least until I fix this issue), just a best-effort layout that works around the wiring.

spatial logic

I built a simple tool to click through a grid and assign LEDs to screen coordinates. The pump samples left-center at 35% width, the RAM samples dead center around 55–65%, and the fans are mapped to the far right edge at 85%.

Even though the fans are electrically a single unit, they mostly sit on the right side of the case. Mapping them to the right edge of the screen creates a somewhat convincing flow from the CPU block outward to the exhaust.

The LED mapping tool

It turned out to be surprisingly nice-looking! I sometimes catch myself watching the case shift colors and smiling. :)