Skip to content
  • MySensors
  • OpenHardware.io
  • Categories
  • Recent
  • Tags
  • Popular
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo
  1. Home
  2. My Project
  3. Humidity controlled bathroom dryer during and after showering or sauna

Humidity controlled bathroom dryer during and after showering or sauna

Scheduled Pinned Locked Moved My Project
humidity
18 Posts 4 Posters 8.5k Views 2 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • B Offline
    B Offline
    boozz
    wrote on last edited by
    #9

    @samppa:

    I know it's not the answer to your question, but it might be a solution to your problem :-) In my bathroom i am monitoring the hot-tap temperature (actual the supply line which is at the attick in my situation). Once it goes above 40º C my fan starts. This fan then continues running even if I stop showering as the pipe doesn't cools down rather slowly. Once the hot-tap pipe has gone below 35ºC the fan is stopped. Using a sensor on the hot-tap and a actuator (relay) for the fan.
    I have been using humidity sensors for this purpose before and found them not to be very reliable on the long term (lasted less than 1 year working) . Thus this solution which is practical and very robust.

    Regards,

    Boozz

    S 1 Reply Last reply
    0
    • B boozz

      @samppa:

      I know it's not the answer to your question, but it might be a solution to your problem :-) In my bathroom i am monitoring the hot-tap temperature (actual the supply line which is at the attick in my situation). Once it goes above 40º C my fan starts. This fan then continues running even if I stop showering as the pipe doesn't cools down rather slowly. Once the hot-tap pipe has gone below 35ºC the fan is stopped. Using a sensor on the hot-tap and a actuator (relay) for the fan.
      I have been using humidity sensors for this purpose before and found them not to be very reliable on the long term (lasted less than 1 year working) . Thus this solution which is practical and very robust.

      Regards,

      Boozz

      S Offline
      S Offline
      samppa
      wrote on last edited by
      #10

      @boozz

      Nice workaround, but I already have hot tap sensor, but that is used to keep the pipe always hot by controlling an auxiliary pump used to circulate hot water when not showering so that when opening the shower I do not have to wait long time before getting hot water since the pipes are quite long from the boiler.

      B 1 Reply Last reply
      0
      • S samppa

        I have arduino sensor measuring humidity of my bathroom with DHT22, alongside with an existing old mechanical humidity limit sensor (that is now used for backup in the logic). I have hooked the node also to booster mode switch of the air ventilation unit of the house and using weather sensor for reference outside humidity. The idea is to replace the mechanical "sensor" with a bit more intelligent logic that takes into account the weather outside and if it is too humid outside (hot summer) ventilating the bathroom does not reduce the internal humidity.
        All works good, except that I need to implement calculation of the mathematical formula for converting the outside relative humidity when the air is warmed up by the ventilation unit since the temperature changes the relative humidity value - non linearly.
        The "real" formula is too complex for PLEG math so I probably need to make linear approximation to simplify the math for the logic.

        D Offline
        D Offline
        doctor64
        wrote on last edited by
        #11

        @samppa There is a article (in Russian, unfortunately) where solved almost exactly this problem. (Ventilation of garage)
        http://habrahabr.ru/post/244135/
        If you wish i can try to translate, but basic idea of algorithm is to calculate absolute humidity for inside and outside, compare and turn ventilation if inside absolutely humidity bigger than outside with threshold 0.01 gram/m3. Also, if outside relative humidity is large than 90% ventilation does not performed, because it happen in very unusual case, like heavy rain outside, and ventilation in this case is pointless.

        S 1 Reply Last reply
        0
        • S samppa

          @boozz

          Nice workaround, but I already have hot tap sensor, but that is used to keep the pipe always hot by controlling an auxiliary pump used to circulate hot water when not showering so that when opening the shower I do not have to wait long time before getting hot water since the pipes are quite long from the boiler.

          B Offline
          B Offline
          boozz
          wrote on last edited by
          #12

          @samppa

          I agree, In that case it cannot be used, or the pipe from the circulation pipe to your shower should have some significant length.

          BTW, although you may think it's useless (or at least less effective) when the outside humidity is higher than the interior humidity to use a fan, I think it is not (always). Depends on where the fresh air comes from (probably somewhere from the house were it is not as humid as in your bathroom....)
          As long as you're able to get the humid air flowing to a place somewhere outside (using your fan) and the fresh air is less humid than in your bathroom it does have the effect you're looking for, even when it's raining outside!

          Boozz

          S 1 Reply Last reply
          0
          • D doctor64

            @samppa There is a article (in Russian, unfortunately) where solved almost exactly this problem. (Ventilation of garage)
            http://habrahabr.ru/post/244135/
            If you wish i can try to translate, but basic idea of algorithm is to calculate absolute humidity for inside and outside, compare and turn ventilation if inside absolutely humidity bigger than outside with threshold 0.01 gram/m3. Also, if outside relative humidity is large than 90% ventilation does not performed, because it happen in very unusual case, like heavy rain outside, and ventilation in this case is pointless.

            S Offline
            S Offline
            samppa
            wrote on last edited by
            #13

            @doctor64 said:

            @samppa There is a article (in Russian, unfortunately) where solved almost exactly this problem. (Ventilation of garage)
            http://habrahabr.ru/post/244135/
            If you wish i can try to translate, but basic idea of algorithm is to calculate absolute humidity for inside and outside, compare and turn ventilation if inside absolutely humidity bigger than outside with threshold 0.01 gram/m3. Also, if outside relative humidity is large than 90% ventilation does not performed, because it happen in very unusual case, like heavy rain outside, and ventilation in this case is pointless.

            Thanks! Google translated sufficiently :-)
            The absolute humidity idea seems simple and the formula is straightforward.

            The only issue left is how to request data from other sensor so that calculation could be done in one node. @BulldogLowell suggested pushing the data, but that looks a bit complicated..

            D 1 Reply Last reply
            0
            • B boozz

              @samppa

              I agree, In that case it cannot be used, or the pipe from the circulation pipe to your shower should have some significant length.

              BTW, although you may think it's useless (or at least less effective) when the outside humidity is higher than the interior humidity to use a fan, I think it is not (always). Depends on where the fresh air comes from (probably somewhere from the house were it is not as humid as in your bathroom....)
              As long as you're able to get the humid air flowing to a place somewhere outside (using your fan) and the fresh air is less humid than in your bathroom it does have the effect you're looking for, even when it's raining outside!

              Boozz

              S Offline
              S Offline
              samppa
              wrote on last edited by
              #14

              @boozz

              In my case the fresh air comes always from outside and through the ventilation unit where it is warmed up. @doctor64 got the point that in rare cases like hot summer rain the outside humidity makes ventilation pointless, or actually it makes the ventilation run full speed overnight since it does not dry the air.

              By the way, thanks for everyone for great comments!

              1 Reply Last reply
              0
              • S samppa

                @doctor64 said:

                @samppa There is a article (in Russian, unfortunately) where solved almost exactly this problem. (Ventilation of garage)
                http://habrahabr.ru/post/244135/
                If you wish i can try to translate, but basic idea of algorithm is to calculate absolute humidity for inside and outside, compare and turn ventilation if inside absolutely humidity bigger than outside with threshold 0.01 gram/m3. Also, if outside relative humidity is large than 90% ventilation does not performed, because it happen in very unusual case, like heavy rain outside, and ventilation in this case is pointless.

                Thanks! Google translated sufficiently :-)
                The absolute humidity idea seems simple and the formula is straightforward.

                The only issue left is how to request data from other sensor so that calculation could be done in one node. @BulldogLowell suggested pushing the data, but that looks a bit complicated..

                D Offline
                D Offline
                doctor64
                wrote on last edited by doctor64
                #15

                @samppa Seems like high humidity in bathroom is a common problem, because i also plan to implement exactly this thing.
                But, because i can't pump fresh air from outside, i live in multi apartment building, so i pump humid air from bathroom into existing ventilation system.
                I think about just add second sensor to same node and check humidity in corridor, or may be use "dumb" node, there all calculations and decision about turning on/off the fan made at controller, OpenHab in my case. So i can take into account time of day, for example - i don't want to hear noise from the fan in the middle of night.

                S 1 Reply Last reply
                0
                • D doctor64

                  @samppa Seems like high humidity in bathroom is a common problem, because i also plan to implement exactly this thing.
                  But, because i can't pump fresh air from outside, i live in multi apartment building, so i pump humid air from bathroom into existing ventilation system.
                  I think about just add second sensor to same node and check humidity in corridor, or may be use "dumb" node, there all calculations and decision about turning on/off the fan made at controller, OpenHab in my case. So i can take into account time of day, for example - i don't want to hear noise from the fan in the middle of night.

                  S Offline
                  S Offline
                  samppa
                  wrote on last edited by
                  #16

                  @doctor64
                  Ok, so you can do the logic in controller. I use Vera as the controller and PLEG for the logic, but it seems there is not enough math functions available for the dew point or absolute humidity calculations..

                  D BulldogLowellB 2 Replies Last reply
                  0
                  • S samppa

                    @doctor64
                    Ok, so you can do the logic in controller. I use Vera as the controller and PLEG for the logic, but it seems there is not enough math functions available for the dew point or absolute humidity calculations..

                    D Offline
                    D Offline
                    doctor64
                    wrote on last edited by
                    #17

                    @samppa Sorry, i am not familiar with Vera and PLEG. As last resort, you can use OpenHab with Vera - i'm think Vera is ZWave controller?

                    1 Reply Last reply
                    0
                    • S samppa

                      @doctor64
                      Ok, so you can do the logic in controller. I use Vera as the controller and PLEG for the logic, but it seems there is not enough math functions available for the dew point or absolute humidity calculations..

                      BulldogLowellB Offline
                      BulldogLowellB Offline
                      BulldogLowell
                      Contest Winner
                      wrote on last edited by
                      #18

                      @samppa

                      yes, but you saw the little point functions your arduino is very capable of, yes?

                      if you post your attempt at a sketch to control your fan (or even pseudo code) we can certainly help you code it up for Vera.

                      1 Reply Last reply
                      0
                      Reply
                      • Reply as topic
                      Log in to reply
                      • Oldest to Newest
                      • Newest to Oldest
                      • Most Votes


                      18

                      Online

                      11.7k

                      Users

                      11.2k

                      Topics

                      113.1k

                      Posts


                      Copyright 2025 TBD   |   Forum Guidelines   |   Privacy Policy   |   Terms of Service
                      • Login

                      • Don't have an account? Register

                      • Login or register to search.
                      • First post
                        Last post
                      0
                      • MySensors
                      • OpenHardware.io
                      • Categories
                      • Recent
                      • Tags
                      • Popular