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. Irrigation Controller (up to 16 valves with Shift Registers)

Irrigation Controller (up to 16 valves with Shift Registers)

Scheduled Pinned Locked Moved My Project
371 Posts 56 Posters 247.9k Views 52 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.
  • Mark JeffordM Mark Jefford

    @BulldogLowell
    Hi! :)

    Rather than using valve 8, i am using only a block of 4, but currently have a 2 channel for testing.

    My reading into shift registers showed 0b0000000010000000 is 2x 8 bit outputs, B0-B7

    tried configuing B0 and B7 to try and activate relay 1, was still seeing 5V on all pins apart from the output pin for the zone in use (EG zone 2 expecting Zone1 to alway be on)

    or am i doing this completely wrong? :)

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

    @Mark-Jefford

    hmmm... are your relays ACTIVE HIGH (actuate wiht a 5V signal) or ACTIVE LOW (actuate when brought to ground) type?

    Mark JeffordM 1 Reply Last reply
    0
    • BulldogLowellB BulldogLowell

      @Mark-Jefford

      hmmm... are your relays ACTIVE HIGH (actuate wiht a 5V signal) or ACTIVE LOW (actuate when brought to ground) type?

      Mark JeffordM Offline
      Mark JeffordM Offline
      Mark Jefford
      wrote on last edited by
      #130

      @BulldogLowell

      Oh, well this is strange, if i disconnect the pin to the relay, it does not activate when unpowered.

      but from the shift register it is +5 when the zone is not active, and 0V when active, so i assume its an active low not active high by your example... surely removing the 5V feed to the relay pin should make it activate.. not sure whats going on there, some sort of black magic :P

      My reading of shift registers has made my brain hurt.. do i need to reverse the 0000000010000000 for 1111111101111111?

      1 Reply Last reply
      0
      • rechin304R Offline
        rechin304R Offline
        rechin304
        wrote on last edited by
        #131

        Dear all,

        i have trying to make the irrigation controller to start all zones in same time and run for the specified. I'm using version for domoticz. Can you please help me out with hint of what i can change in the code ?
        Another thing is that from domoticsz when i start a zone that zone start and previous is stopped but that status is not updated.

        Thank you in advance.

        P.S. I will post some pictures of the hardware build soon.

        BulldogLowellB 1 Reply Last reply
        0
        • rechin304R rechin304

          Dear all,

          i have trying to make the irrigation controller to start all zones in same time and run for the specified. I'm using version for domoticz. Can you please help me out with hint of what i can change in the code ?
          Another thing is that from domoticsz when i start a zone that zone start and previous is stopped but that status is not updated.

          Thank you in advance.

          P.S. I will post some pictures of the hardware build soon.

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

          @rechin304

          have you tried changing the eight to one?

          #define NUMBER_OF_VALVES 8  // Change this to set your valve count up to 16.
          

          trigger all your relays with the same output.

          1 Reply Last reply
          0
          • rechin304R Offline
            rechin304R Offline
            rechin304
            wrote on last edited by
            #133

            Well, that's not the point.
            I will have 4 zones that need different type of water needs. For example one zone will be with micro irrigation watering, another one with lawn sprinkler. i do not understand why not to start all zones at once and they will finish according to the time set and not to start one after other. Another thing is why to wait for a zone to finish when you trigger another one.

            To start all valve at once when is trigger all zones i did change:

            else if (state == RUN_ALL_ZONES)
              {
                if (lastValve != valveNumber)
                {
                  for (byte i = 0; i <= NUMBER_OF_VALVES; i++)
                  {
                    if (i == 0 || i == valveNumber)
                    {
                      gw.send(msg1valve.setSensor(i).set(true), false);
                    }
                    else
                    {
                      gw.send(msg1valve.setSensor(i).set(false), false);
                    }
                  }
                }
                lastValve = valveNumber;
                fastToggleLed();
                if (state != lastState)
                {
                  valveNumber = 1;
                  updateRelays(ALL_VALVES_OFF);
                  DEBUG_PRINTLN(F("State Changed, Running All Zones..."));
                }
                unsigned long nowMillis = millis();
                if (nowMillis - startMillis < VALVE_RESET_TIME)
                {
                  updateRelays(ALL_VALVES_OFF);
                }
                else if (nowMillis - startMillis < (allZoneTime[valveNumber] * 60000UL))
                {
                  updateRelays(BITSHIFT_VALVE_NUMBER);
                }
                else
            

            with

            else if (state == RUN_ALL_ZONES)
              {
                if (lastValve != valveNumber)
                {
                  for (byte i = 0; i <= NUMBER_OF_VALVES; i++)
                  {
                    if (i == 0 || i == valveNumber)
                    {
                      gw.send(msg1valve.setSensor(i).set(true), false);
                    }
                    else
                    {
                      gw.send(msg1valve.setSensor(i).set(true), false); //to update domoticz
                    }
                  }
                }
                lastValve = valveNumber;
                fastToggleLed();
                if (state != lastState)
                {
                  valveNumber = 1;
                  updateRelays(ALL_VALVES_OFF);
                  DEBUG_PRINTLN(F("State Changed, Running All Zones..."));
                }
                unsigned long nowMillis = millis();
                if (nowMillis - startMillis < VALVE_RESET_TIME)
                {
                  updateRelays(0); //all outputs will be on
                }
                else if (nowMillis - startMillis < (allZoneTime[valveNumber] * 60000UL))
                {
                  updateRelays(BITSHIFT_VALVE_NUMBER);
                }
                else
            
            BulldogLowellB 1 Reply Last reply
            0
            • rechin304R rechin304

              Well, that's not the point.
              I will have 4 zones that need different type of water needs. For example one zone will be with micro irrigation watering, another one with lawn sprinkler. i do not understand why not to start all zones at once and they will finish according to the time set and not to start one after other. Another thing is why to wait for a zone to finish when you trigger another one.

              To start all valve at once when is trigger all zones i did change:

              else if (state == RUN_ALL_ZONES)
                {
                  if (lastValve != valveNumber)
                  {
                    for (byte i = 0; i <= NUMBER_OF_VALVES; i++)
                    {
                      if (i == 0 || i == valveNumber)
                      {
                        gw.send(msg1valve.setSensor(i).set(true), false);
                      }
                      else
                      {
                        gw.send(msg1valve.setSensor(i).set(false), false);
                      }
                    }
                  }
                  lastValve = valveNumber;
                  fastToggleLed();
                  if (state != lastState)
                  {
                    valveNumber = 1;
                    updateRelays(ALL_VALVES_OFF);
                    DEBUG_PRINTLN(F("State Changed, Running All Zones..."));
                  }
                  unsigned long nowMillis = millis();
                  if (nowMillis - startMillis < VALVE_RESET_TIME)
                  {
                    updateRelays(ALL_VALVES_OFF);
                  }
                  else if (nowMillis - startMillis < (allZoneTime[valveNumber] * 60000UL))
                  {
                    updateRelays(BITSHIFT_VALVE_NUMBER);
                  }
                  else
              

              with

              else if (state == RUN_ALL_ZONES)
                {
                  if (lastValve != valveNumber)
                  {
                    for (byte i = 0; i <= NUMBER_OF_VALVES; i++)
                    {
                      if (i == 0 || i == valveNumber)
                      {
                        gw.send(msg1valve.setSensor(i).set(true), false);
                      }
                      else
                      {
                        gw.send(msg1valve.setSensor(i).set(true), false); //to update domoticz
                      }
                    }
                  }
                  lastValve = valveNumber;
                  fastToggleLed();
                  if (state != lastState)
                  {
                    valveNumber = 1;
                    updateRelays(ALL_VALVES_OFF);
                    DEBUG_PRINTLN(F("State Changed, Running All Zones..."));
                  }
                  unsigned long nowMillis = millis();
                  if (nowMillis - startMillis < VALVE_RESET_TIME)
                  {
                    updateRelays(0); //all outputs will be on
                  }
                  else if (nowMillis - startMillis < (allZoneTime[valveNumber] * 60000UL))
                  {
                    updateRelays(BITSHIFT_VALVE_NUMBER);
                  }
                  else
              
              BulldogLowellB Offline
              BulldogLowellB Offline
              BulldogLowell
              Contest Winner
              wrote on last edited by
              #134

              @rechin304 said:

              Well, that's not the point.
              I will have 4 zones that need different type of water needs. For example one zone will be with micro irrigation watering, another one with lawn sprinkler. i do not understand why not to start all zones at once and they wi finish according to the time set and not to start one after other. Another thing is why to wait for a zone to finish when you trigger another one.

              I see your point an understand your questions. The purpose of zone cycling is to be able to have enough pressure in each zone independently while also having pressure for household use. Drawing water to every zone (in my case 9) makes the pressure so low, there may not be enough to open the individual pop-up valves, much less fill the washing machine.

              The wait period (which you may set) is there to allow the time for hydraulic actuation of solenoid valves. These types of valves close slowly, and since they are in a manifold, the next valve to start opens faster if the water pressure at the manifold is allowed time to reach normal static pressure.

              The beauty of open source is that you get to do it your way. If you have the pressure to run all your valves at the same time, with enough to spare to take a shower, then you are fortunate!

              So, did you add another 'switch' to your controller to send the all zone command?

              1 Reply Last reply
              0
              • rechin304R Offline
                rechin304R Offline
                rechin304
                wrote on last edited by
                #135

                @rechin304 said:

                {
                       updateRelays(0); //all outputs will be on
                     }
                

                I did this so all relays on is ok now.
                What i miss is to start individual zones more than once at a time :).

                1 Reply Last reply
                0
                • rechin304R Offline
                  rechin304R Offline
                  rechin304
                  wrote on last edited by rechin304
                  #136

                  Pictures of the case project and how is arranged inside. Not yet on the final location, still testing.
                  5_1461396298101_IMG_3866.JPG 4_1461396298101_IMG_3865.JPG 3_1461396298101_IMG_3863.JPG 1_1461396298101_IMG_3861.JPG 0_1461396298101_IMG_3860.JPG

                  k5mapK 1 Reply Last reply
                  3
                  • David MoraD Offline
                    David MoraD Offline
                    David Mora
                    wrote on last edited by
                    #137

                    Hi I just finished building my first project in arduino ( this one) but the code is too large now for the arduino memory its 32748 bytes could you please share with me the older version of the code / libraries to run it in code bender ?

                    mfalkviddM petewillP 2 Replies Last reply
                    0
                    • David MoraD David Mora

                      Hi I just finished building my first project in arduino ( this one) but the code is too large now for the arduino memory its 32748 bytes could you please share with me the older version of the code / libraries to run it in code bender ?

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

                      @David-Mora's question was double-posted. See https://forum.mysensors.org/topic/3921/code-grew-larger-dan-promini/ for the other thread.

                      1 Reply Last reply
                      0
                      • David MoraD David Mora

                        Hi I just finished building my first project in arduino ( this one) but the code is too large now for the arduino memory its 32748 bytes could you please share with me the older version of the code / libraries to run it in code bender ?

                        petewillP Offline
                        petewillP Offline
                        petewill
                        Admin
                        wrote on last edited by
                        #139

                        @David-Mora I responded to your comment on the YouTube video but I'll respond here as well just in case people are reading this thread instead.

                        This is probably because debug is enabled in the MyConfig.h file. Please comment out this line: #define DEBUG
                        Make sure to save the .h file then recompile the Arduino code. It should be around 25,342 bytes.

                        My "How To" home automation video channel: https://www.youtube.com/channel/UCq_Evyh5PQALx4m4CQuxqkA

                        1 Reply Last reply
                        0
                        • David MoraD Offline
                          David MoraD Offline
                          David Mora
                          wrote on last edited by David Mora
                          #140

                          Hi Pete thank you very much, I am using mysensors online editor , not sure if I should edit that code?0_1463751590886_mysensors.jpg

                          1 Reply Last reply
                          0
                          • hekH Offline
                            hekH Offline
                            hek
                            Admin
                            wrote on last edited by
                            #141

                            It's not possible to disable this from codebender. You'll need to install the Arduino IDE onto your computer.

                            David MoraD 1 Reply Last reply
                            0
                            • hekH hek

                              It's not possible to disable this from codebender. You'll need to install the Arduino IDE onto your computer.

                              David MoraD Offline
                              David MoraD Offline
                              David Mora
                              wrote on last edited by David Mora
                              #142

                              @hek in computer I get this:
                              C:\Program Files (x86)\Arduino\libraries\LiquidCrystal\I2CIO.cpp:35:26: fatal error: ../Wire/Wire.h: No such file or directory

                              #include <../Wire/Wire.h>

                                                    ^
                              

                              compilation terminated.

                              exit status 1
                              Error compilación en tarjeta Arduino Pro or Pro Mini.

                              petewillP 1 Reply Last reply
                              0
                              • David MoraD David Mora

                                @hek in computer I get this:
                                C:\Program Files (x86)\Arduino\libraries\LiquidCrystal\I2CIO.cpp:35:26: fatal error: ../Wire/Wire.h: No such file or directory

                                #include <../Wire/Wire.h>

                                                      ^
                                

                                compilation terminated.

                                exit status 1
                                Error compilación en tarjeta Arduino Pro or Pro Mini.

                                petewillP Offline
                                petewillP Offline
                                petewill
                                Admin
                                wrote on last edited by
                                #143

                                @David-Mora Maybe this will help:
                                https://www.youtube.com/watch?v=qUey_X9n2KI

                                My "How To" home automation video channel: https://www.youtube.com/channel/UCq_Evyh5PQALx4m4CQuxqkA

                                1 Reply Last reply
                                0
                                • David MoraD Offline
                                  David MoraD Offline
                                  David Mora
                                  wrote on last edited by David Mora
                                  #144

                                  thank you for your help ! I just reinstaled arduino and now I getthis ( I just downloaded the I.5 and copy and paste all libraries in the libraries folder:
                                  TENCIÓN: Categoría '' en librería UIPEthernet no es válida. Configurando a 'Uncategorized'
                                  C:\Users\David\Desktop\IrrigationController\IrrigationController.ino:92:31: fatal error: LiquidCrystal_I2C.h: No such file or directory

                                  #include <LiquidCrystal_I2C.h>

                                                             ^
                                  

                                  compilation terminated.

                                  exit status 1
                                  Error compilación en tarjeta Arduino Pro or Pro Mini.0_1463753883896_liquid.jpg

                                  David MoraD 1 Reply Last reply
                                  0
                                  • David MoraD David Mora

                                    thank you for your help ! I just reinstaled arduino and now I getthis ( I just downloaded the I.5 and copy and paste all libraries in the libraries folder:
                                    TENCIÓN: Categoría '' en librería UIPEthernet no es válida. Configurando a 'Uncategorized'
                                    C:\Users\David\Desktop\IrrigationController\IrrigationController.ino:92:31: fatal error: LiquidCrystal_I2C.h: No such file or directory

                                    #include <LiquidCrystal_I2C.h>

                                                               ^
                                    

                                    compilation terminated.

                                    exit status 1
                                    Error compilación en tarjeta Arduino Pro or Pro Mini.0_1463753883896_liquid.jpg

                                    David MoraD Offline
                                    David MoraD Offline
                                    David Mora
                                    wrote on last edited by
                                    #145

                                    @David-Mora quite sad I´ve spent two days now installing and uninstalling arduino and libraries and no luck

                                    petewillP 1 Reply Last reply
                                    0
                                    • David MoraD David Mora

                                      @David-Mora quite sad I´ve spent two days now installing and uninstalling arduino and libraries and no luck

                                      petewillP Offline
                                      petewillP Offline
                                      petewill
                                      Admin
                                      wrote on last edited by
                                      #146

                                      @David-Mora Did you close all instances of Arduino and open again after you added the LiquidCrystal library? It looks like it can't find it.

                                      My "How To" home automation video channel: https://www.youtube.com/channel/UCq_Evyh5PQALx4m4CQuxqkA

                                      David MoraD 1 Reply Last reply
                                      0
                                      • petewillP petewill

                                        @David-Mora Did you close all instances of Arduino and open again after you added the LiquidCrystal library? It looks like it can't find it.

                                        David MoraD Offline
                                        David MoraD Offline
                                        David Mora
                                        wrote on last edited by
                                        #147

                                        @petewill Yes Pete it doesnt work at all

                                        David MoraD 1 Reply Last reply
                                        0
                                        • David MoraD David Mora

                                          @petewill Yes Pete it doesnt work at all

                                          David MoraD Offline
                                          David MoraD Offline
                                          David Mora
                                          wrote on last edited by
                                          #148

                                          @David-Mora hope this is the right way to post the code finally the only mistake is
                                          Arduino:1.6.9 (Windows 7), Tarjeta:"Arduino Pro or Pro Mini, ATmega328 (5V, 16 MHz)"

                                          El Sketch usa 30,808 bytes (100%) del espacio de almacenamiento de programa. El máximo es 30,720 bytes.
                                          Las variables Globales usan 1,329 bytes (64%) de la memoria dinámica, dejando 719 bytes para las variables locales. El máximo es 2,048 bytes.
                                          processing.app.debug.RunnerException: Programa muy grando: visite http://www.arduino.cc/en/Guide/Troubleshooting#size para ver cómo reducirlo.
                                          at cc.arduino.Compiler.size(Compiler.java:315)
                                          at cc.arduino.Compiler.build(Compiler.java:156)
                                          at processing.app.Sketch.build(Sketch.java:1111)
                                          at processing.app.Sketch.build(Sketch.java:1081)
                                          at processing.app.Editor$BuildHandler.run(Editor.java:1988)
                                          at java.lang.Thread.run(Thread.java:745)
                                          Programa muy grando: visite http://www.arduino.cc/en/Guide/Troubleshooting#size para ver cómo reducirlo.
                                          Tarjeta en COM4 no disponible

                                          Este reporte podría tener más información con
                                          "Mostrar salida detallada durante la compilación"
                                          opción habilitada en Archivo -> Preferencias.

                                          petewillP 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