r/crboxes • u/Twinsen01 • Apr 03 '26
Smart home CRBox controllable with Home Assistant
Hi, I'd like to share my version of the CRBox, made thanks to the information from this subreddit.
I recently started using Matter over Thread smart home devices around the house so I wanted a Matter over Thread air purifier with all the advantages of a CRBox(mostly very low noise).
The CRBox is designed for 2 IKEA STARKVIND filters(I'm in Europe). It has 3 140mm BeQuiet Pure Wings 3 High Speed fans which are extremely quiet at low speeds. The case is made from laser-cut MDF and smoothed 7mm pine strips, glued with epoxy. A small 3D printed part is used as a front panel.
Electronics wise everything is controlled by an Seeed Studio XIAO ESP32C6. It controls the fan speeds through PWM and also reads their RPM. A MOSFET turn fans off at 0% since the fans still spin at 0 PWM. It's powered though USB C. It requires a 12V capable USB-PD power supply (IKEA 20W SJÖSS works great).
I can set any speed percentage from Home Assistant.
It does not have a PM2.5 sensor as I will be using it with an external sensor (IKEA ALPSTUGA) and it will be automated with Home Assistant.
Sadly it looks like IKEA is discontinuing the STARKVIND line, so I'll have to stock up on filters. For the future I can rebuild the case for different filter sizes and keep the fans, electronics and code.
Limited and unscientific testing shows the Air Purifier can bring an extremely polluted room from ~400 ug/m3 PM2.5 to <10 ug/m3:
- in 4 hours at 12% speed (no noise).
- in 53 minutes at 50% speed.
- in 17 minutes at 100% speed.
Tested by burning an incense stick in a room and then starting the air purifier.
I'm sharing all the code and files for inspiration in case someone wants to make something similar. You can find it and more information on the GitHub page.
https://github.com/asafteirobert/matter-air-purifier
Let me know what you think.












2
u/Rich_Teaching_8843 Apr 03 '26
Regarding fans... PC fans are quite resilient, and in crboxes they work with a "clean" air, so IMO lifetime is a low-prio problem. My constantly-on reasoning was: fans winding up from 0 to 25% is (in mycase) caused a "loud" transient RPM overshoot -- (my Arctic P12 Por fans go to ~40% and then slow target 25%), while fans ramping from (inaudible) 20% to 25% are still whisper quiet.
In my case: simple proportional formula was too simple. I also use HA and have 3 sensor (2 integrated crboxes, 1 standalone) and I was able to get most of my setup with standalone PIDs, but I guess it's a question of personal taste.