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

推荐订阅源

U
Unit 42
博客园 - Franky
T
Tailwind CSS Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
月光博客
月光博客
人人都是产品经理
人人都是产品经理
雷峰网
雷峰网
Hugging Face - Blog
Hugging Face - Blog
有赞技术团队
有赞技术团队
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
阮一峰的网络日志
阮一峰的网络日志
C
Check Point Blog
爱范儿
爱范儿
T
The Blog of Author Tim Ferriss
aimingoo的专栏
aimingoo的专栏
Stack Overflow Blog
Stack Overflow Blog
博客园 - 聂微东
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
L
LangChain Blog
云风的 BLOG
云风的 BLOG
MyScale Blog
MyScale Blog
Microsoft Security Blog
Microsoft Security Blog
The Cloudflare Blog
博客园 - 三生石上(FineUI控件)

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. :)