Navigation

    • Register
    • Login
    • OpenHardware.io
    • Categories
    • Recent
    • Tags
    • Popular
    1. Home
    2. MatrixIII
    3. Topics
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    Topics created by MatrixIII

    • MatrixIII

      For Sale - Looking to sell everything that a new person needs for this hobby
      General Discussion • • MatrixIII  

      1
      1
      Votes
      1
      Posts
      798
      Views

      No one has replied

    • MatrixIII

      UNO W5100 Shield not pinging.
      Controllers • • MatrixIII  

      11
      0
      Votes
      11
      Posts
      8561
      Views

      snuppesno

      Thanks MatrixIII, I was just about to give up on my Ethernet-gateway when I found this thread, you saved my day too! I just downloaded the Ethernet-gatewaysketch from mysensors, isn't this problem supposed to be solved or did I download from wrong place?
    • MatrixIII

      Auduino Nano and Ethernet Gateway?
      Controllers • • MatrixIII  

      1
      0
      Votes
      1
      Posts
      1068
      Views

      No one has replied

    • MatrixIII

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

      13
      0
      Votes
      13
      Posts
      5084
      Views

      BulldogLowell

      @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() { }