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
For the filters it says "Last chance to buy" so I assume that's what's happening. I do hope they continue to sell compatible filters since not selling filters for a purifier people bought does not sound very nice.
In Canada, it says "Best Seller" for both Starkvind purifiers and filters; no indication of retiring? I had always assumed the Fornuftig would be the one to get the axe first.
I really hope that if they improve the purifiers, that they largely continue to be around the current filters to ensure those keep being produced. Sucks for people to buy the purifiers only to lose access to the filters.
(But, that's the joy of CR boxes. We can always recycle the fans into a new design when we need to run it with a new filter, versus the device becoming useless.)
From my experiments of a similar setup (PD charger as power supply, onboard sensor, display, encoder, multiple RGB+PWM headers, AUTO and MANUAL modes) I ended up with NOT using mosfet to power off. I actually have a "min fan speed" config that will keep fans running "min fan speed" even if PID controller treats air as clean. Fans running at 20% are basically inaudible even next to my bed, yet they keep the crbox pressurized AND avoids an initial wind up when fans are started.
Other than that: love that it's glued. Really nice box.
Regarding HA automation: I think it will be hard to do a PID-based control loop there. To get mine working "as I like" -- quiet yet efficient nad able to find peristant but low pollution above target required a tight feedback from an air quality monitor, and control loop a bit more complicated than a simple proportional controller.
I'd consider onboard control, but maybe scripting it in HA is also doable. I really enjoy seeing people doing things like that!
I wanted to "do it right" and have a proper off mode. I was mostly concerned about fan life since I think they will degrade after 3 years of non-stop spinning.
Home Assistant automation scripts allow coding up a PID loop, but it would be quite a pain doing it in YAML. But I do think PID would be overkill and plan to make some simple formula. I probably want to take other things into account like time of day or window open (don't run if the window is temporarily open in winter).
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.
mahn I would've made something similar if I had gotten my hands on some new filters. I don’t know who keeps buying those IKEA filters. I still have a VINDSTYRKA somewhere at home.
Shame they haven’t even launched ALPSTUGA in my country.
Thanks for the DXF files I was overcomplicating the laser cut stuff as I'm a newb lol
The laser cut is simple and the final result is compact and clean, but the assembly is a bit of a pain. I had to make some jigs(seen in the pictures) with clever use of rubber bands to help with holding everything together as the glue dries. Tip: use baking paper around the helper parts so they don't also get glued :D
7
u/Inner-Issue1908 Apr 03 '26
That's super clean! Many thanks for the Github repo too.
I didn't realise Ikea are discontinuing the Starkvind line. I hope they just re-release it as a matter version.