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. Office plant monitoring

Office plant monitoring

Scheduled Pinned Locked Moved My Project
223 Posts 39 Posters 131.6k Views 42 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.
  • L Offline
    L Offline
    Lars65
    wrote on last edited by
    #16

    Hi!
    At the moment do I only have three sensors, and I will be using them on the same arduino. Those will be powered by wall power.
    But I have ordered some more sensors, and some of them will be battery powered.
    Though both me and my wife often forget to water our plants, do I really like this.
    I use Domoticz, and it's easy to get a notification when it's time to water.
    You have been really helpfull. Tomorrow will I mill a new PCB, to test this code.
    :)

    1 Reply Last reply
    0
    • mfalkviddM mfalkvidd

      @Lars65 Just a question before things get too crazy: Will you be running your node on battery power? If you will be using wall power you can just power all sensors continuously from Vcc and get rid of the code for turning on and off the sensors, and get rid of all the battery reporting code.

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

      Hi @mfalkvidd and thank you for your nice work and sketch.
      I just have one question about the power pin, I saw on datasheet that the adruino pro mini can handle 40mA max per powerpin. I Have four of these soil moisture sensors but cant find how much current they need... they use a LM393, and the datasheet say 0.4mA..
      Did you think than i coul plug all of them on the same powerpin or i need to use your second sketch ?
      Thanks in advance !

      1 Reply Last reply
      0
      • mfalkviddM Offline
        mfalkviddM Offline
        mfalkvidd
        Mod
        wrote on last edited by
        #18

        @damien: I don't know, unfortunately. Maybe @Lars65 can do a measurement on his moisture sensors?

        D 1 Reply Last reply
        0
        • mfalkviddM mfalkvidd

          @damien: I don't know, unfortunately. Maybe @Lars65 can do a measurement on his moisture sensors?

          D Offline
          D Offline
          damien
          wrote on last edited by
          #19

          @mfalkvidd Ok thanks for your reply, i will wait for @Lars65 to see if he has done the measurement, else i will do it by myself on mine when i receive them.
          Thx

          1 Reply Last reply
          0
          • L Offline
            L Offline
            Lars65
            wrote on last edited by
            #20

            Hi Guys!
            No I haven't made any measurements.

            { 4, 0, 1, // This assumes 2 sensors per pin. First two sensors are powered through pin 4, using analog pins 0 and 1
            **5, 2, 3, **// Second two sensors get power from pin 5 and are connected to analog pins 2 and 3
            6, 4, 5 // Third set of sensors get power from pin 6 and are connected to analog pins 4 and 5
            }
            So I did change 4,0,1, to 4,0,. What I saw with this was that I use power pin 4, to the analog input A0. So now have I made it so A0, has powerpin 4, A1 has powerpin 5, and A2 has powerpin 6.

            1 Reply Last reply
            0
            • mfalkviddM Offline
              mfalkviddM Offline
              mfalkvidd
              Mod
              wrote on last edited by mfalkvidd
              #21

              How did thinks go @Lars65 ?

              I thought a bit more about this problem and I think I have come up with a pretty neat solution:
              Throw away the chip on the moisture sensor and connect the "pitchfork" directly to the Arduino. Connect one prong to GND and one prong to an analog pin. No power pins are required.
              https://codebender.cc/sketch:177182
              The chip on the moisture sensor is basically a voltage divider. We get the same thing if we use the internal pull-up resistor on the Atmega processor.
              EDIT: This means you can buy just the "pitchforks" really cheap: http://www.aliexpress.com/item/10pcs-Soil-Hygrometer-Detection-Module-Soil-Moisture-Sensor-Probes/2051713873.html

              D Fat FlyF 2 Replies Last reply
              0
              • N Offline
                N Offline
                Nicklas Starkel
                wrote on last edited by
                #22

                @mfalkvidd , I think there has been many discussions on how these sensors corrodes over time.
                I can see that this node sleeps between the readings and thus reduces corrosion as it only is powered during reading.
                However, some threads I've read suggests that you alternate the power, as well, between readings.
                Something you might implement in the code?
                Also, do you have an estimate on the duration usage on the batteries for one of your plants?
                Cheers!

                1 Reply Last reply
                0
                • mfalkviddM Offline
                  mfalkviddM Offline
                  mfalkvidd
                  Mod
                  wrote on last edited by mfalkvidd
                  #23

                  @Nicklas-Starkel If a measurement is taken once per hour, the sensor will only have power 0,008% of the time.
                  If corrosion still is a problem, and if the corrosion can be avoided by reversing polarity for every second measurement, I might add it. It would add complexity to the sketch though, and complexity is often the enemy of reliability.

                  Also, for people wanting to use multiple sensors on the same mcu, reversing polarity would cut the possible number of connected moisture sensors in half since it would require two analog pins per sensor.

                  My estimated battery time on 2xAA for a Mini Pro with removed power led and voltage regulator is 1-2 years.

                  1 Reply Last reply
                  0
                  • mfalkviddM mfalkvidd

                    How did thinks go @Lars65 ?

                    I thought a bit more about this problem and I think I have come up with a pretty neat solution:
                    Throw away the chip on the moisture sensor and connect the "pitchfork" directly to the Arduino. Connect one prong to GND and one prong to an analog pin. No power pins are required.
                    https://codebender.cc/sketch:177182
                    The chip on the moisture sensor is basically a voltage divider. We get the same thing if we use the internal pull-up resistor on the Atmega processor.
                    EDIT: This means you can buy just the "pitchforks" really cheap: http://www.aliexpress.com/item/10pcs-Soil-Hygrometer-Detection-Module-Soil-Moisture-Sensor-Probes/2051713873.html

                    D Offline
                    D Offline
                    damien
                    wrote on last edited by
                    #24

                    @mfalkvidd said:

                    How did thinks go @Lars65 ?

                    I thought a bit more about this problem and I think I have come up with a pretty neat solution:
                    Throw away the chip on the moisture sensor and connect the "pitchfork" directly to the Arduino. Connect one prong to GND and one prong to an analog pin. No power pins are required.
                    https://codebender.cc/sketch:177182
                    The chip on the moisture sensor is basically a voltage divider. We get the same thing if we use the internal pull-up resistor on the Atmega processor.

                    Hi @mfalkvidd and thank you very very much for your new version of the skecth for moisture sensors, its very clever ! i will test it as soon as possible

                    1 Reply Last reply
                    0
                    • mfalkviddM Offline
                      mfalkviddM Offline
                      mfalkvidd
                      Mod
                      wrote on last edited by
                      #25

                      @Nicklas-Starkel last weekend one of my sensors broke. Both pins were completely corroded and broke just where I connect the dupont wires. I think I will use hot glue to protect the connectors, but I have also added alternating power to my single-sensor sketch. I have this sketch running on three sensors now.
                      https://codebender.cc/sketch:158460

                      R Pierre PP 2 Replies Last reply
                      2
                      • M Offline
                        M Offline
                        memheli
                        wrote on last edited by
                        #26

                        Newbie to controllers. I'd been looking at PanStamp for this project, and came across your post from Google. This would be my first project w/ micro controllers. How is this tied to the internet for reporting?

                        1 Reply Last reply
                        0
                        • mfalkviddM Offline
                          mfalkviddM Offline
                          mfalkvidd
                          Mod
                          wrote on last edited by
                          #27

                          In MySensors lingo, the Arduino is called a sensor. The part that MySensors calls a controller runs on a "real" computer, and gets information from the sensors. The controller usually handles reporting. The documentation at http://www.mysensors.org/about/network can probably give you a good overview.

                          1 Reply Last reply
                          0
                          • m26872M Offline
                            m26872M Offline
                            m26872
                            Hardware Contributor
                            wrote on last edited by
                            #28

                            Just some ideas to the corrosion issue (any photos?). If both pins were corroded, it may not be sufficient with polarity switching. Perhaps a simple active cathodic protection system could help. E.g. a +wire limited to a few uA and wrapped with some aluminium foil in the soil near the sensor?

                            I haven't yet got to it, but the plant monitoring is on pretty high on my list.

                            mfalkviddM 1 Reply Last reply
                            1
                            • m26872M m26872

                              Just some ideas to the corrosion issue (any photos?). If both pins were corroded, it may not be sufficient with polarity switching. Perhaps a simple active cathodic protection system could help. E.g. a +wire limited to a few uA and wrapped with some aluminium foil in the soil near the sensor?

                              I haven't yet got to it, but the plant monitoring is on pretty high on my list.

                              mfalkviddM Offline
                              mfalkviddM Offline
                              mfalkvidd
                              Mod
                              wrote on last edited by
                              #29

                              @m26872 said:

                              (any photos?)

                              DSC00564_crop.jpg DSC00561_crop.jpg DSC00558_crop.jpg

                              m26872M 1 Reply Last reply
                              0
                              • mfalkviddM mfalkvidd

                                @Nicklas-Starkel last weekend one of my sensors broke. Both pins were completely corroded and broke just where I connect the dupont wires. I think I will use hot glue to protect the connectors, but I have also added alternating power to my single-sensor sketch. I have this sketch running on three sensors now.
                                https://codebender.cc/sketch:158460

                                R Offline
                                R Offline
                                rajbadri
                                wrote on last edited by
                                #30

                                @mfalkvidd
                                i am using your sketch for indoor plant monitoring but have modified the sleep time to one hour . the problem i am facing is that every alternate humidity reading i get is a 0
                                like
                                first reading ------ 67%
                                second reading ----- 0%
                                third reading ------65%
                                fourth reading ------- 0%

                                and likewise

                                Please Guide

                                Thanks

                                mfalkviddM 1 Reply Last reply
                                0
                                • R rajbadri

                                  @mfalkvidd
                                  i am using your sketch for indoor plant monitoring but have modified the sleep time to one hour . the problem i am facing is that every alternate humidity reading i get is a 0
                                  like
                                  first reading ------ 67%
                                  second reading ----- 0%
                                  third reading ------65%
                                  fourth reading ------- 0%

                                  and likewise

                                  Please Guide

                                  Thanks

                                  mfalkviddM Offline
                                  mfalkviddM Offline
                                  mfalkvidd
                                  Mod
                                  wrote on last edited by
                                  #31

                                  @rajbadri which pins are your sensor connected to?

                                  R 3 Replies Last reply
                                  0
                                  • D Offline
                                    D Offline
                                    doblanch
                                    wrote on last edited by
                                    #32

                                    Hello,

                                    I'm on the same project personally...I using 2 battery... this part should work between 3.3 V and 5V...
                                    finally with 2XAA we only have 3V, and the max value for me is 750 not 1023... did you get 1023 when into the water?
                                    I use a gold plated sensor, and the plug will be into a seal to avoid corrosion and water to go in.
                                    I use a sensbender where I connected on A3 the pin use for the soil moisture sensor.
                                    Could you confirm that change the polarity help to avoid corrosion ???
                                    thanks

                                    mfalkviddM F 3 Replies Last reply
                                    0
                                    • D doblanch

                                      Hello,

                                      I'm on the same project personally...I using 2 battery... this part should work between 3.3 V and 5V...
                                      finally with 2XAA we only have 3V, and the max value for me is 750 not 1023... did you get 1023 when into the water?
                                      I use a gold plated sensor, and the plug will be into a seal to avoid corrosion and water to go in.
                                      I use a sensbender where I connected on A3 the pin use for the soil moisture sensor.
                                      Could you confirm that change the polarity help to avoid corrosion ???
                                      thanks

                                      mfalkviddM Offline
                                      mfalkviddM Offline
                                      mfalkvidd
                                      Mod
                                      wrote on last edited by
                                      #33

                                      @doblanch said:

                                      Could you confirm that change the polarity help to avoid corrosion ???
                                      thanks

                                      No I can not. All my sensors change the polarity, so I can't tell if there is a difference. You'll have to experiment.

                                      D 2 Replies Last reply
                                      0
                                      • D doblanch

                                        Hello,

                                        I'm on the same project personally...I using 2 battery... this part should work between 3.3 V and 5V...
                                        finally with 2XAA we only have 3V, and the max value for me is 750 not 1023... did you get 1023 when into the water?
                                        I use a gold plated sensor, and the plug will be into a seal to avoid corrosion and water to go in.
                                        I use a sensbender where I connected on A3 the pin use for the soil moisture sensor.
                                        Could you confirm that change the polarity help to avoid corrosion ???
                                        thanks

                                        mfalkviddM Offline
                                        mfalkviddM Offline
                                        mfalkvidd
                                        Mod
                                        wrote on last edited by mfalkvidd
                                        #34

                                        @doblanch said:

                                        the max value for me is 750 not 1023... did you get 1023 when into the water?

                                        I haven't tried in water. I don't care about the absolute value, I just note the reading when the plant needs watering and set a notification for that level. One of my plants needs water at about 70%, another at about 5%. It will vary wildly between different plant types, climate and soil composition.

                                        The value for water will probably vary as well, depending on the water. Distilled water, rain water, tap water, salt water will all have different resistance.

                                        And the value will vary depending on temperature and different Arduinos since the pull-up resistor is inexact.

                                        1 Reply Last reply
                                        1
                                        • mfalkviddM mfalkvidd

                                          @doblanch said:

                                          Could you confirm that change the polarity help to avoid corrosion ???
                                          thanks

                                          No I can not. All my sensors change the polarity, so I can't tell if there is a difference. You'll have to experiment.

                                          D Offline
                                          D Offline
                                          doblanch
                                          wrote on last edited by
                                          #35

                                          @mfalkvidd ok ; thanks I willl try :-)

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


                                          15

                                          Online

                                          11.7k

                                          Users

                                          11.2k

                                          Topics

                                          113.0k

                                          Posts


                                          Copyright 2019 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