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. Development
  3. Is there anything stored on Gateway's EEPROM? Include sensor issue.

Is there anything stored on Gateway's EEPROM? Include sensor issue.

Scheduled Pinned Locked Moved Development
13 Posts 5 Posters 5.1k Views 1 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.
  • M Offline
    M Offline
    MatrixIII
    wrote on last edited by
    #4

    Also, before I re-flashed both gateway and sensor, I played with Humidity, Door/Window switch, Light Relay.
    I removed all these devices from Vera and restarted.
    Then I cleared only the sensor EEPROM and flashed with Humidity sensor again.
    When added to Vera, it found 2 Repeaters and 1 Door/Window switch (not Humidity) which makes me believe some ID's are somewhere getting cached.

    VeraLite UI5
    Arduino UNO as Gateway (ENC28J60 Ethernet)
    Arduino Mini Pro as sensors

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

      The com failures has nothing to do with Vera/routing. You must solve them first. Try some other powersource/cap size/type.

      1 Reply Last reply
      0
      • M Offline
        M Offline
        MatrixIII
        wrote on last edited by
        #6

        Thanks, that helps to know that radios are not connecting to each other. I understand they are two different issues and sorry for merging them in the same thread. This all worked pretty good a couple of days ago. I will try other power supply. Come to think of it, I believe I added the capacitors later and it was working better before adding the capacitors. What other cap size I can try? - sorry I am a newbie here. Is the goal to see if the radio has a stable close to 3.3v using a multi-meter? - I am just not sure how to test if its any better (radio stability).

        VeraLite UI5
        Arduino UNO as Gateway (ENC28J60 Ethernet)
        Arduino Mini Pro as sensors

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

          I have a pack of different sizes... I usually just test some other size and sometimes switch to a ceramic variant when I see communication failures on my sensors.

          But unfortunately I have no oscilloscope to be able to make a fully correct selection. Trial and horror ;)

          1 Reply Last reply
          0
          • M Offline
            M Offline
            MatrixIII
            wrote on last edited by
            #8

            Thanks. I have ordered some higher uF capacitors and will Test with those when they arrive tomorrow and report my results.

            VeraLite UI5
            Arduino UNO as Gateway (ENC28J60 Ethernet)
            Arduino Mini Pro as sensors

            1 Reply Last reply
            0
            • M Offline
              M Offline
              MatrixIII
              wrote on last edited by
              #9

              I tried with several.Up to 100uf it didn't help. The next uf up I had 330uf and that worked. Well it now works 95% of the times. I don't know if that high of the capatience will cause issues but it mostly works now.

              VeraLite UI5
              Arduino UNO as Gateway (ENC28J60 Ethernet)
              Arduino Mini Pro as sensors

              RJ_MakeR 1 Reply Last reply
              0
              • M MatrixIII

                I tried with several.Up to 100uf it didn't help. The next uf up I had 330uf and that worked. Well it now works 95% of the times. I don't know if that high of the capatience will cause issues but it mostly works now.

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

                @MatrixIII Wow that a pretty large cap.. Are these low ESR caps? If not, you may want to pick up a few in various sizes to see if you can get to 99%

                RJ_Make

                1 Reply Last reply
                0
                • M Offline
                  M Offline
                  MatrixIII
                  wrote on last edited by
                  #11

                  I bought the 4.7 uF using the link on the store here. The others I have bought from here http://www.amazon.com/gp/product/B00AZG71H4/ref=oh_aui_detailpage_o02_s00?ie=UTF8&psc=1

                  VeraLite UI5
                  Arduino UNO as Gateway (ENC28J60 Ethernet)
                  Arduino Mini Pro as sensors

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

                    Am I the only one experiencing success when using delays in the node software before sending radio messages? Even a hardware guy like me prefer that before starting to change caps.

                    delay(500);
                    gw.begin(...
                    delay(100);
                    gw.sendSketchInfo(...
                    delay(100);
                    gw.present(...
                    
                    delay(100);
                    gw.send(...
                    
                    delay(100);
                    gw.sendBatteryLevel(....
                    
                    BulldogLowellB 1 Reply Last reply
                    0
                    • m26872M m26872

                      Am I the only one experiencing success when using delays in the node software before sending radio messages? Even a hardware guy like me prefer that before starting to change caps.

                      delay(500);
                      gw.begin(...
                      delay(100);
                      gw.sendSketchInfo(...
                      delay(100);
                      gw.present(...
                      
                      delay(100);
                      gw.send(...
                      
                      delay(100);
                      gw.sendBatteryLevel(....
                      
                      BulldogLowellB Offline
                      BulldogLowellB Offline
                      BulldogLowell
                      Contest Winner
                      wrote on last edited by
                      #13

                      @m26872

                      kind of averse to using blocking code that way... I have used delay() in my setup() functions like that... for the first time I set up the devices.... The caps are really there for the day-to-day reliability of the radio. It is a power hungry little bugger.

                      You could also do something like this so that you didn't have the delays there once you had the devices set up in vera...

                      //...
                      #define FIRST_TIME_SETUP
                      //...
                      //...
                      #ifdef FIRST_TIME_SETUP
                      #define SETUP_DELAY 500
                      #else 
                      #define SETUP_DELAY 0
                      #endif
                      
                      
                      void setup()
                      {
                        delay(SETUP_DELAY);
                        gw.begin(...
                        delay(SETUP_DELAY);
                        gw.sendSketchInfo(...
                        delay(SETUP_DELAY);
                        gw.present(...
                        delay(SETUP_DELAY);
                      }
                      void loop()
                      {
                        
                      }
                      
                      1 Reply Last reply
                      0
                      Reply
                      • Reply as topic
                      Log in to reply
                      • Oldest to Newest
                      • Newest to Oldest
                      • Most Votes


                      9

                      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