Back To Basics: Solid State Dehumidifiers

I came across these Dehumidifiers only recently and they seem to be the real deal. I was always on the lookout for using tech to remove water from inside smaller products, and most of the time I was stuck with peltier style ones or the silica gel units. The solid state membrane ones (called Rosahl) are from Mitsubishi Electric and seems to have around for a while.

Solid State Dehumidifier

Rosahl operates using a solid polymer electrolyte (SPE) membrane. When a small 3V DC voltage is applied, it electrolyses moisture in the air. This process breaks down water molecules into hydrogen ions and oxygen(Check Images). The hydrogen ions migrate through the membrane and recombine with oxygen on the other side, releasing water vapour outside the enclosure. I find this method efficient because it doesn’t involve liquid water, making the system maintenance-free and eliminating the need for water drainage, which is a big deal for consumer products.

Solid State Dehumidifier

It’s designed for enclosures ranging from as small as 250 millilitres to up to 8 cubic meters and comes in various sizes. The absence of moving parts like the fan means it’s silent and vibration-free and can be used in any small product for water removal. The device uses relatively low power(60mW – 5W), and the power consumption decreases further as the relative humidity within the enclosure drops.

However, one significant drawback I’ve noticed is cost. Even the smallest modules start around $25, with larger ones exceeding $500. Also, it isn’t practical for larger spaces, like entire rooms or bigger areas. I assume scaling the membrane might reduce its efficiency and significantly drive up manufacturing costs.

I’d have loved to incorporate this tech into some of my client products if it were more affordable. Interesting tech nevertheless.

If you liked the post, Share it with your friends!

Back to Basics: LIN

Today, let’s talk about Local Interconnect Network(LIN). I believe it’s an essential but yet often overlooked communication protocol in automotive tech because of its big brother CAN.

LIN came in the late 1990s when automotive manufacturers needed a simpler, cost-effective solution to complement CAN. While CAN was great for critical tasks like engine control or braking. But for simpler tasks, CAN was too complicated and expensive. This is exactly where LIN shines. It operates on a single data wire (Data & GND) serial communication, making it simpler and cheaper to implement. LIN transmits at speeds up to only 20kbps which is more than enough for non-critical tasks like controlling windows, mirrors, seat adjustments, and wipers. Why use & waste the CAN bandwidth for these routine tasks?

Its architecture consists primarily of one master node and multiple slave nodes(upto 16). The master node initiates communication by sending a header; slave nodes respond based on predefined data frames. LIN has a self-synchronization feature, meaning slave nodes synchronize automatically with the master’s clock every time a message is sent in the header frame. Hence, there is no need for additional timing signals. Since communication protocol is not complex, it’s usually handled in the microcontroller and doesn’t need a dedicated controller like CAN.

The uC’s output is level shifted by specific LIN transceivers for transmission/reception in the bus. The physical layer bus voltage can be between 9V-30V, depending on the IC. They require pull-ups like I2C, but it might already be built into the IC. Although speed of communication is low, you would need to keep the bus capacitance under 10nF for good signalling. Max distance supported is around 40m. EMI/EMC problems with LIN are relatively lesser because of lower rise times/speed compared with CAN.

LIN is everywhere in modern cars. Think of them as local masters handling all the less critical work and then sends the data to the CAN when needed via the microcontroller. They do their work without any major fuss and coexist with CAN in your cars.

If you liked the post, Share it with your friends!
1 5 6 7 8 9 65