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. Troubleshooting
  3. Reliability?

Reliability?

Scheduled Pinned Locked Moved Troubleshooting
reliability
51 Posts 9 Posters 20.4k Views 5 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.
  • RJ_MakeR RJ_Make

    Let me ask you guys this.. Is it 'OK' to power the mini pro via the VCC terminal on the side? This is how I've been powering all my sensors...
    Should I be using the RAW pin?

    I've been powering the DS18B20 directly from the stepped up 3.3v output of the module (not the mini pro)

    korttomaK Offline
    korttomaK Offline
    korttoma
    Hero Member
    wrote on last edited by korttoma
    #21

    @ServiceXp
    If you are feeding 3.3v to the VCC pin it should be ok but if you are in fact feeding 3.3v to the RAW pin it might not be enough (Input Voltage 3.35 -12 V (3.3V model))

    http://arduino.cc/en/Main/ArduinoBoardProMini

    • Tomas
    1 Reply Last reply
    0
    • RJ_MakeR Offline
      RJ_MakeR Offline
      RJ_Make
      Hero Member
      wrote on last edited by RJ_Make
      #22

      Locked up again this morning @ 7:37am with a temp of -0.1. So a .47uF cap isn't the answer.... I think my last option before giving up on this is to remove the stepup regulator.

      Any other idea's?

      RJ_Make

      1 Reply Last reply
      0
      • greglG Offline
        greglG Offline
        gregl
        Hero Member
        wrote on last edited by
        #23

        @ServiceXp
        Could you try running a sketch which just uses the dallas temp lib eg: there is is an example called "Single" with the DallasTemperature lib. RUn it for 24hrs and see if it survives.

        Likewise... in your existing sketch...stop reading the temps ( but leave everything connected) and just send a value every say 30sec to Vera .... and leave for 24hrs or so...see if that survives.

        Also have you tried a different PIN for the onewire sensor?

        RJ_MakeR 2 Replies Last reply
        0
        • greglG gregl

          @ServiceXp
          Could you try running a sketch which just uses the dallas temp lib eg: there is is an example called "Single" with the DallasTemperature lib. RUn it for 24hrs and see if it survives.

          Likewise... in your existing sketch...stop reading the temps ( but leave everything connected) and just send a value every say 30sec to Vera .... and leave for 24hrs or so...see if that survives.

          Also have you tried a different PIN for the onewire sensor?

          RJ_MakeR Offline
          RJ_MakeR Offline
          RJ_Make
          Hero Member
          wrote on last edited by
          #24

          @gregl said:> @ServiceXp

          Could you try running a sketch which just uses the dallas temp lib eg: there is is an example called "Single" with the DallasTemperature lib. RUn it for 24hrs and see if it survives.

          Likewise... in your existing sketch...stop reading the temps ( but leave everything connected) and just send a value every say 30sec to Vera .... and leave for 24hrs or so...see if that survives.

          Also have you tried a different PIN for the onewire sensor?

          1. and 2) ---- will do and report back.

          Do you think the wire it self could be a/the problem. Since much of the sensor line is also subject to low temps, maybe it's breaking down some how... (Although I'm using 3 different DS18B20 sensors) just talking out loud..... ;-) ....

          1. I have not, but I can add that to the 'things to try' list..

          Thanks for you help @gregl

          RJ_Make

          1 Reply Last reply
          0
          • B Offline
            B Offline
            Bandra
            wrote on last edited by
            #25

            @ServiceXp

            My PCBs are winging their way to you (sorry, got forgot to send them for a week or two). They may solve your problem. Let me know when you get them.

            RJ_MakeR 1 Reply Last reply
            0
            • B Bandra

              @ServiceXp

              My PCBs are winging their way to you (sorry, got forgot to send them for a week or two). They may solve your problem. Let me know when you get them.

              RJ_MakeR Offline
              RJ_MakeR Offline
              RJ_Make
              Hero Member
              wrote on last edited by
              #26

              @Bandra Thank you Sir. I'll report back.

              RJ_Make

              1 Reply Last reply
              0
              • greglG gregl

                @ServiceXp
                Could you try running a sketch which just uses the dallas temp lib eg: there is is an example called "Single" with the DallasTemperature lib. RUn it for 24hrs and see if it survives.

                Likewise... in your existing sketch...stop reading the temps ( but leave everything connected) and just send a value every say 30sec to Vera .... and leave for 24hrs or so...see if that survives.

                Also have you tried a different PIN for the onewire sensor?

                RJ_MakeR Offline
                RJ_MakeR Offline
                RJ_Make
                Hero Member
                wrote on last edited by
                #27

                @gregl
                Only sending this, every 30 sec

                gw.send(msgTEMP.setSensor(i).set(777, 1));
                

                and this is what I'm getting in return.. Not sure what the fails are about?

                2014-09-11_7-23-39.png

                RJ_Make

                1 Reply Last reply
                0
                • RJ_MakeR Offline
                  RJ_MakeR Offline
                  RJ_Make
                  Hero Member
                  wrote on last edited by
                  #28

                  The section of code

                  	void sendTemperatureToController(){
                  		//Start time for Temperature readings
                  		TemperatureTimeing = millis ();
                  		
                  		// Fetch temperatures from Dallas sensors
                  		//sensors.requestTemperatures();
                  		
                  		// Read temperatures and send them to controller
                  		for (int i=0; i<numSensors && i<MAX_ATTACHED_DS18B20; i++) {
                  			// Fetch and round temperature to one decimal
                  			//float temperature = static_cast<float>(static_cast<int>((sensors.getTempFByIndex(i)) * 10.)) / 10.;
                  			//float temperature = static_cast<float>(static_cast<int>((gw.getConfig().isMetric?sensors.getTempCByIndex(i):sensors.getTempFByIndex(i)) * 10.)) / 10.;
                  			// Only send data if temperature has changed and no error
                  			
                  			//if (lastTemperature[i] != temperature && temperature != -127.00) {
                  				//// Send in the new temperature
                  				//gw.send(msgTEMP.setSensor(i).set(temperature,1));
                  				//lastTemperature[i]=temperature;
                  			//}
                  			gw.send(msgTEMP.setSensor(i).set(777, 1));
                  		}
                  
                  	}
                  

                  RJ_Make

                  1 Reply Last reply
                  0
                  • RJ_MakeR Offline
                    RJ_MakeR Offline
                    RJ_Make
                    Hero Member
                    wrote on last edited by
                    #29

                    Ok,
                    The sensor has has been running for ~24 hrs and has not locked up. So the problem is either in the code (which I doubt because I think others would be seeing this problem) or the actual DS18B20's. Maybe a bad run of them?

                    I think I'm going to let it run a while longer like this, just to make sure.

                    RJ_Make

                    1 Reply Last reply
                    0
                    • RJ_MakeR Offline
                      RJ_MakeR Offline
                      RJ_Make
                      Hero Member
                      wrote on last edited by
                      #30

                      Oh and the strangest thing.. those fails stopped.. So I still don't know what those where about..

                      send: 1-1-0-0 s=0,c=1,t=0,pt=7,l=5,st=ok:777.0
                      send: 1-1-0-0 s=0,c=1,t=0,pt=7,l=5,st=ok:777.0
                      send: 1-1-0-0 s=0,c=1,t=0,pt=7,l=5,st=ok:777.0
                      send: 1-1-0-0 s=0,c=1,t=0,pt=7,l=5,st=ok:777.0
                      send: 1-1-0-0 s=0,c=1,t=0,pt=7,l=5,st=ok:777.0
                      send: 1-1-0-0 s=0,c=1,t=0,pt=7,l=5,st=ok:777.0
                      send: 1-1-0-0 s=0,c=1,t=0,pt=7,l=5,st=ok:777.0
                      send: 1-1-0-0 s=0,c=1,t=0,pt=7,l=5,st=ok:777.0
                      send: 1-1-0-0 s=0,c=1,t=0,pt=7,l=5,st=ok:777.0
                      send: 1-1-0-0 s=0,c=1,t=0,pt=7,l=5,st=ok:777.0
                      send: 1-1-0-0 s=0,c=1,t=0,pt=7,l=5,st=ok:777.0
                      send: 1-1-0-0 s=0,c=1,t=0,pt=7,l=5,st=ok:777.0
                      send: 1-1-0-0 s=0,c=1,t=0,pt=7,l=5,st=ok:777.0

                      RJ_Make

                      YveauxY 1 Reply Last reply
                      0
                      • RJ_MakeR RJ_Make

                        Oh and the strangest thing.. those fails stopped.. So I still don't know what those where about..

                        send: 1-1-0-0 s=0,c=1,t=0,pt=7,l=5,st=ok:777.0
                        send: 1-1-0-0 s=0,c=1,t=0,pt=7,l=5,st=ok:777.0
                        send: 1-1-0-0 s=0,c=1,t=0,pt=7,l=5,st=ok:777.0
                        send: 1-1-0-0 s=0,c=1,t=0,pt=7,l=5,st=ok:777.0
                        send: 1-1-0-0 s=0,c=1,t=0,pt=7,l=5,st=ok:777.0
                        send: 1-1-0-0 s=0,c=1,t=0,pt=7,l=5,st=ok:777.0
                        send: 1-1-0-0 s=0,c=1,t=0,pt=7,l=5,st=ok:777.0
                        send: 1-1-0-0 s=0,c=1,t=0,pt=7,l=5,st=ok:777.0
                        send: 1-1-0-0 s=0,c=1,t=0,pt=7,l=5,st=ok:777.0
                        send: 1-1-0-0 s=0,c=1,t=0,pt=7,l=5,st=ok:777.0
                        send: 1-1-0-0 s=0,c=1,t=0,pt=7,l=5,st=ok:777.0
                        send: 1-1-0-0 s=0,c=1,t=0,pt=7,l=5,st=ok:777.0
                        send: 1-1-0-0 s=0,c=1,t=0,pt=7,l=5,st=ok:777.0

                        YveauxY Offline
                        YveauxY Offline
                        Yveaux
                        Mod
                        wrote on last edited by
                        #31

                        @ServiceXp Your previous logging showed the failing messages being routed from node 2 via 1 to 0 (gateway).
                        This log shows messages from node 1 directly to 0 (gateway).
                        This is a different situation, so message routing seems to fail.
                        Any idea what could cause this?

                        Furthermore, which DS18B20 library do you use?

                        http://yveaux.blogspot.nl

                        RJ_MakeR 1 Reply Last reply
                        0
                        • YveauxY Yveaux

                          @ServiceXp Your previous logging showed the failing messages being routed from node 2 via 1 to 0 (gateway).
                          This log shows messages from node 1 directly to 0 (gateway).
                          This is a different situation, so message routing seems to fail.
                          Any idea what could cause this?

                          Furthermore, which DS18B20 library do you use?

                          RJ_MakeR Offline
                          RJ_MakeR Offline
                          RJ_Make
                          Hero Member
                          wrote on last edited by RJ_Make
                          #32

                          @Yveaux

                          1. I'm thinking maybe that's because this node is a relaying node?? Other than that I have no ideal.

                          2. Whatever comes with MySensors.

                          I did try using another Dallas library (the latest version) but there was a gazillion compile errors so I quickly replace it with existing... :-)
                          I just don't know enough yet, to work out all those compile errors.

                          RJ_Make

                          YveauxY 2 Replies Last reply
                          0
                          • RJ_MakeR RJ_Make

                            @Yveaux

                            1. I'm thinking maybe that's because this node is a relaying node?? Other than that I have no ideal.

                            2. Whatever comes with MySensors.

                            I did try using another Dallas library (the latest version) but there was a gazillion compile errors so I quickly replace it with existing... :-)
                            I just don't know enough yet, to work out all those compile errors.

                            YveauxY Offline
                            YveauxY Offline
                            Yveaux
                            Mod
                            wrote on last edited by Yveaux
                            #33

                            @ServiceXp said:

                            1. I'm thinking maybe that's because this node is a relaying node?? Other than that I have no ideal.

                            What do you pass for the 'repeaterMode' flag when calling 'begin' on the sensor object?
                            This determines whether the node behaves as a sensor or a repeater.
                            What does your setup look like exactly?

                            How do you power the DS18B20?

                            Btw. I'll review the DS18B20 code shipped with MySensors. Maybe I can find what causes the hangup.

                            http://yveaux.blogspot.nl

                            RJ_MakeR 1 Reply Last reply
                            0
                            • RJ_MakeR RJ_Make

                              @Yveaux

                              1. I'm thinking maybe that's because this node is a relaying node?? Other than that I have no ideal.

                              2. Whatever comes with MySensors.

                              I did try using another Dallas library (the latest version) but there was a gazillion compile errors so I quickly replace it with existing... :-)
                              I just don't know enough yet, to work out all those compile errors.

                              YveauxY Offline
                              YveauxY Offline
                              Yveaux
                              Mod
                              wrote on last edited by
                              #34

                              @ServiceXp Seems that you're not alone when Arduino hangs up with DS18B20 connected, see http://tushev.org/articles/arduino/item/46-arduino-and-watchdog-timer.
                              This guy suffered from condensation causing a 'shortcut' between the sensor wires...

                              IMO a library should never hang on communication errors, but return an error value after a timeout or so...

                              http://yveaux.blogspot.nl

                              RJ_MakeR 1 Reply Last reply
                              0
                              • YveauxY Yveaux

                                @ServiceXp said:

                                1. I'm thinking maybe that's because this node is a relaying node?? Other than that I have no ideal.

                                What do you pass for the 'repeaterMode' flag when calling 'begin' on the sensor object?
                                This determines whether the node behaves as a sensor or a repeater.
                                What does your setup look like exactly?

                                How do you power the DS18B20?

                                Btw. I'll review the DS18B20 code shipped with MySensors. Maybe I can find what causes the hangup.

                                RJ_MakeR Offline
                                RJ_MakeR Offline
                                RJ_Make
                                Hero Member
                                wrote on last edited by
                                #35

                                @Yveaux said:> @ServiceXp said:

                                1. I'm thinking maybe that's because this node is a relaying node?? Other than that I have no ideal.

                                What do you pass for the 'repeaterMode' flag when calling 'begin' on the sensor object?
                                This determines whether the node behaves as a sensor or a repeater.
                                What does your setup look like exactly?

                                How do you power the DS18B20?

                                Btw. I'll review the DS18B20 code shipped with MySensors. Maybe I can find what causes the hangup.

                                1. Here is the link to one project that uses the DS18B20 sensor, The 2nd sketch is pretty much how it's running now (Locks up when there is a call to read the DS18B20, but doesn't when the code is commented out).

                                2. In all cases, the sensors VCC and GND are connected in common to the power source. Here is the pcb prototype of the EH40 project.

                                upload-bf75281f-3d01-41a8-bdfb-1d08973fd1da.jpg

                                Thanks for the help!

                                RJ_Make

                                1 Reply Last reply
                                0
                                • YveauxY Yveaux

                                  @ServiceXp Seems that you're not alone when Arduino hangs up with DS18B20 connected, see http://tushev.org/articles/arduino/item/46-arduino-and-watchdog-timer.
                                  This guy suffered from condensation causing a 'shortcut' between the sensor wires...

                                  IMO a library should never hang on communication errors, but return an error value after a timeout or so...

                                  RJ_MakeR Offline
                                  RJ_MakeR Offline
                                  RJ_Make
                                  Hero Member
                                  wrote on last edited by
                                  #36

                                  @Yveaux said:> @ServiceXp Seems that you're not alone when Arduino hangs up with DS18B20 connected, see http://tushev.org/articles/arduino/item/46-arduino-and-watchdog-timer.

                                  This guy suffered from condensation causing a 'shortcut' between the sensor wires...

                                  IMO a library should never hang on communication errors, but return an error value after a timeout or so...

                                  I think if this problem winds up being directly related to the DS18B20, its going to have to be a manufacturing issue, because I have 3, (brand new) of these things and they all lock up the Arduino's (3 different mini pros, with 3 different DS18B20's of the same batch)

                                  I'm not even sure the watchdog timer would help in my case, because in most cases, once the sensor is locked up, the only fix is to clear eeprom and re-install sketch.

                                  RJ_Make

                                  YveauxY 1 Reply Last reply
                                  0
                                  • RJ_MakeR Offline
                                    RJ_MakeR Offline
                                    RJ_Make
                                    Hero Member
                                    wrote on last edited by
                                    #37

                                    Oh and power is introduced on the upper left side of the board in the pictures.

                                    RJ_Make

                                    1 Reply Last reply
                                    0
                                    • JohnJ Offline
                                      JohnJ Offline
                                      John
                                      Plugin Developer
                                      wrote on last edited by
                                      #38

                                      Maybe already checked, but i'm remembering that a while ago i created a library for light intensity and other LED based stuff, after a while my device also locked up, after searching for merely a week i found a little memory leak in one of my libraries which was just related to a incorrect fixed size char array. It also used the eeprom for storing particular LED settings.

                                      It happened every time after storing a particular setting after a coupe of hours, if stored after 5 minutes there was no problem but the device then just locked up after a couple of hours.

                                      I also had to reset eeprom values before i could continue....

                                      I also remember with a tmp36 receiving 500 degrees celcius values, which was related to a bug code which had nothing to do with it.

                                      If there would be a leak somewhere in the code it can completely #%$#% up. It's the only thing i can come up with now.

                                      My Domotica project: http://www.pidome.org

                                      1 Reply Last reply
                                      0
                                      • RJ_MakeR RJ_Make

                                        @Yveaux said:> @ServiceXp Seems that you're not alone when Arduino hangs up with DS18B20 connected, see http://tushev.org/articles/arduino/item/46-arduino-and-watchdog-timer.

                                        This guy suffered from condensation causing a 'shortcut' between the sensor wires...

                                        IMO a library should never hang on communication errors, but return an error value after a timeout or so...

                                        I think if this problem winds up being directly related to the DS18B20, its going to have to be a manufacturing issue, because I have 3, (brand new) of these things and they all lock up the Arduino's (3 different mini pros, with 3 different DS18B20's of the same batch)

                                        I'm not even sure the watchdog timer would help in my case, because in most cases, once the sensor is locked up, the only fix is to clear eeprom and re-install sketch.

                                        YveauxY Offline
                                        YveauxY Offline
                                        Yveaux
                                        Mod
                                        wrote on last edited by
                                        #39

                                        @ServiceXp said:

                                        I think if this problem winds up being directly related to the DS18B20, its going to have to be a manufacturing issue,

                                        Could be the case of course, but I would also setup an endurance test with a completely different ds1820 library and see how this behaves over time. In the onewire library there is an example sketch for ds1820 that only uses the onewire library.
                                        Maybe you could try this one.
                                        Just to rule things out, and please run it without mysensors.

                                        Good luck!

                                        http://yveaux.blogspot.nl

                                        1 Reply Last reply
                                        0
                                        • RJ_MakeR Offline
                                          RJ_MakeR Offline
                                          RJ_Make
                                          Hero Member
                                          wrote on last edited by
                                          #40

                                          Was excited last night, a new batch of DS18B20 arrived, so I connected it, uploaded the original sketch and........ This morning @ 4:48 with a temp of 74.6F it locked up.

                                          Well, I guess it's not the DS18B20 hardware... This is just ridiculous, I've got to be doing something wrong here....

                                          RJ_Make

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


                                          12

                                          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