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
mntlvrM

mntlvr

@mntlvr
About
Posts
118
Topics
17
Shares
0
Groups
0
Followers
0
Following
2

Posts

Recent Best Controversial

  • fails to wake with 2 interupts
    mntlvrM mntlvr

    @markjgabb said in fails to wake with 2 interupts:

    pinMode(DOOR_PIN, INPUT);

    to be a true pull up your the code should read pinMode(DOOR_PIN, INPUT_PULLUP);

    Troubleshooting

  • NRF NANO
    mntlvrM mntlvr

    Hey folks
    I was checking the site today and queried to see if anyone has tried the newest NRF NANO?
    I have built 2 modules with them just to see ift they work, and they work great hope someones else has tried to see if they will meet there project specs.
    Good luck

    Hardware

  • Getting Pin Change Interrupts working together with Timer interrupts / sleep(XX ms) on Arduino Pro Mini
    mntlvrM mntlvr
    
    
    // Enable debug prints to serial monitor
    #define MY_DEBUG
    
    // Enable and select radio type attached
    #define MY_RADIO_RF24
    #define MY_RADIO_RF24_PA_MAX
    // #define MY_RF24_CE_PIN 8 // used when Radio is wired non conventional
    // #define MY_RF24_CS_PIN 7 //
    #include <MySensors.h>
    
    #define MY_NODE_ID 10 // if this works you can create your own NODES
    #define SKETCH_NAME "Remote Control"
    #define SKETCH_MAJOR_VER "1"
    #define SKETCH_MINOR_VER "5"
    // define your children here
    #define PRIMARY_CHILD_ID 7
    #define SECONDARY_CHILD_ID 8
    #define PRIMARY_CHILD2_ID 9
    #define SECONDARY_CHILD2_ID 10
    // construct your button pins here for the analog inputs you have created
    const int PRIMARY_BUTTON3_PIN_OUT = 5;
    const int SECONDARY_BUTTON4_PIN_OUT = 7 ;
    // These are the primary and secondary main buttons
    #define PRIMARY_BUTTON_PIN 2   // Arduino Digital I/O pin for button/reed switch
    #define SECONDARY_BUTTON_PIN 3 // Arduino Digital I/O pin for button/reed switch
    // these are the 1ast 2 analog pin chosen
    #define PRIMARY_BUTTON3_PIN 4   // Arduino Digital I/O pin for button/reed switch
    #define SECONDARY_BUTTON4_PIN 6   // Arduino Digital I/O pin for button/reed switch
    
    #if (PRIMARY_BUTTON_PIN < 2 || PRIMARY_BUTTON_PIN >7)
    #error PRIMARY_BUTTON_PIN must be either 2 or 3 for interrupts to work
    #endif
    #if (SECONDARY_BUTTON_PIN < 2 || SECONDARY_BUTTON_PIN > 7)
    #error SECONDARY_BUTTON_PIN must be either 2 or 3 for interrupts to work
    #endif
    #if (PRIMARY_BUTTON_PIN == SECONDARY_BUTTON_PIN)
    #error PRIMARY_BUTTON_PIN and BUTTON_PIN2 cannot be the same
    #endif
    #if (PRIMARY_CHILD_ID == SECONDARY_CHILD_ID)
    #error PRIMARY_CHILD_ID and SECONDARY_CHILD_ID cannot be the same
    #endif
    // create you messages here
    // Change to V_LIGHT if you use S_LIGHT in presentation below
    MyMessage msg(PRIMARY_CHILD_ID, V_TRIPPED);
    MyMessage msg2(SECONDARY_CHILD_ID, V_TRIPPED);
    MyMessage msg3(PRIMARY_CHILD2_ID, V_TRIPPED);
    MyMessage msg4(SECONDARY_CHILD2_ID, V_TRIPPED);
    // ********************************************
    ISR (PCINT2_vect)
    {
      // handle pin change interrupt for D0 to D7 here
      if (PIND & bit (4))  // if it was high
        PORTD |= bit (5);  // turn on D5
      else
        PORTD &= ~bit (5); // turn off D5
    
      if (PIND & bit (6))  // if it was high
        PORTD |= bit (7);  // turn on D7
      else
        PORTD &= ~bit (7); // turn off D7
    }  // end of PCINT2_vect
    //*************************************************
    void setup()
    {
      // Setup the buttons
      pinMode(PRIMARY_BUTTON_PIN, INPUT_PULLUP);
      pinMode(SECONDARY_BUTTON_PIN, INPUT_PULLUP);
      //**********************************************************
      // pin change interrupt (D4)
      PCMSK2 |= bit (PCINT20);  // want pin 4
      PCIFR  |= bit (PCIF2);    // clear any outstanding interrupts
      PCICR  |= bit (PCIE2);    // enable pin change interrupts for D0 to D7
      pinMode(PRIMARY_BUTTON3_PIN, INPUT_PULLUP);
      pinMode (PRIMARY_BUTTON3_PIN_OUT, OUTPUT);
    
      // pin change interrupt (D6)
      PCMSK2 |= bit (PCINT22);  // want pin 6
      PCIFR  |= bit (PCIF2);    // clear any outstanding interrupts
      PCICR  |= bit (PCIE2);    // enable pin change interrupts for D0 to D7
      pinMode (SECONDARY_BUTTON4_PIN, INPUT_PULLUP);
      pinMode (SECONDARY_BUTTON4_PIN_OUT, OUTPUT);
    
    //**********************************************************************
    
    // Send the sketch version information to the gateway and Controller
    sendSketchInfo(SKETCH_NAME, SKETCH_MAJOR_VER "." SKETCH_MINOR_VER);
    
    // Register binary input sensor to sensor_node (they will be created as child devices)
    // You can use S_DOOR, S_MOTION or S_LIGHT here depending on your usage.
    // If S_LIGHT is used, remember to update variable type you send in. See "msg" above.
    present(PRIMARY_CHILD_ID, S_DOOR);
    present(SECONDARY_CHILD_ID, S_DOOR);
    present(PRIMARY_CHILD2_ID, S_DOOR);
    present(SECONDARY_CHILD2_ID, S_DOOR);
    }
    // Loop will iterate on changes on the BUTTON_PINs
    void loop()
    {
      uint8_t value;
      static uint8_t sentValue = 2;
      static uint8_t sentValue2 = 2;
    
      static uint8_t sentValue3 = 2;
      static uint8_t sentValue4 = 2;
      // short delay to allow buttons to properly settle
      delay(5);
    
      value = digitalRead(PRIMARY_BUTTON_PIN);
      if (value != sentValue) {
        // Value has changed from last transmission, send the updated value
        send(msg.set(value == HIGH));
        Serial.print("Value of Primary Button > ");
        Serial.println(digitalRead(value));
        sentValue = value;
      }
    
      value = digitalRead(SECONDARY_BUTTON_PIN);
      if (value != sentValue2) {
        // Value has changed from last transmission, send the updated value
        send(msg2.set(value == HIGH));
        Serial.print("Value of Secondary Button > ");
        Serial.println(digitalRead(value));
        sentValue2 = value;
      }
    
      value = digitalRead(PRIMARY_BUTTON3_PIN);
      if (value != sentValue3) {
        send(msg3.set(value == HIGH));
        Serial.print("Value of Primary Button 3 > ");
        Serial.println(digitalRead(PRIMARY_BUTTON3_PIN_OUT));
        sentValue3 = value;
      }
    
      value = digitalRead(SECONDARY_BUTTON4_PIN);
      if (value != sentValue4) {
        send(msg4.set(value == HIGH));
        Serial.print("Value of Secondary Button 4 > ");
        Serial.println(digitalRead(SECONDARY_BUTTON4_PIN_OUT));
        sentValue4 = value;
      }
      // Sleep until something happens with the sensor
      sleep(PRIMARY_BUTTON_PIN - 2, CHANGE, 0, SECONDARY_BUTTON_PIN - 2, CHANGE, 0);
        }
    
    Troubleshooting

  • Coronavirus (way, way, off topic)
    mntlvrM mntlvr

    @zboblamont You know the test will only tell you if you have at time of test not if you will not get it in the future so not sure why all of the belief that testing is going to stop you from getting it if you are in contact with people who have it

    General Discussion

  • Sensors won't connect to Gateway after adding Controller
    mntlvrM mntlvr

    Hello
    If your using an nrf24 radio module try changing the nrf24l01 the FPAR is telling you it is not talking to the remotes I have had this issue with several nrf modules and changing them has corrected this issue

    Home Assistant

  • Library Compatabilty under Vera UI7
    mntlvrM mntlvr

    Finially got my Vera 3 to accept the new files now works okay

    Vera

  • Changing NODE ID for sketch for existing NODE
    mntlvrM mntlvr

    Thanks skywatch but by running the latest NodeManager I did not have to change anything.

    Development

  • Changing NODE ID for sketch for existing NODE
    mntlvrM mntlvr

    Re: Modify Node ID?

    I tried this sketch using library 2.3.2 and got this error message

    Arduino: 1.8.4 (Windows 10), Board: "Arduino Pro or Pro Mini, ATmega328P (3.3V, 8 MHz)"
    
    C:\Program Files (x86)\Arduino\arduino-builder -dump-prefs -logger=machine -hardware C:\Program Files (x86)\Arduino\hardware -tools C:\Program Files (x86)\Arduino\tools-builder -tools C:\Program Files (x86)\Arduino\hardware\tools\avr -built-in-libraries C:\Program Files (x86)\Arduino\libraries -libraries C:\Users\swbob\Documents\Arduino\libraries -fqbn=arduino:avr:pro:cpu=8MHzatmega328 -ide-version=10804 -build-path C:\Users\swbob\AppData\Local\Temp\arduino_build_998314 -warnings=default -build-cache C:\Users\swbob\AppData\Local\Temp\arduino_cache_486292 -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.arduinoOTA.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avr-gcc.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avrdude.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -verbose D:\sketch_mar05a\sketch_mar05a.ino\sketch_mar05a.ino.ino
    C:\Program Files (x86)\Arduino\arduino-builder -compile -logger=machine -hardware C:\Program Files (x86)\Arduino\hardware -tools C:\Program Files (x86)\Arduino\tools-builder -tools C:\Program Files (x86)\Arduino\hardware\tools\avr -built-in-libraries C:\Program Files (x86)\Arduino\libraries -libraries C:\Users\swbob\Documents\Arduino\libraries -fqbn=arduino:avr:pro:cpu=8MHzatmega328 -ide-version=10804 -build-path C:\Users\swbob\AppData\Local\Temp\arduino_build_998314 -warnings=default -build-cache C:\Users\swbob\AppData\Local\Temp\arduino_cache_486292 -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.arduinoOTA.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avr-gcc.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avrdude.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -verbose D:\sketch_mar05a\sketch_mar05a.ino\sketch_mar05a.ino.ino
    Using board 'pro' from platform in folder: C:\Program Files (x86)\Arduino\hardware\arduino\avr
    Using core 'arduino' from platform in folder: C:\Program Files (x86)\Arduino\hardware\arduino\avr
    WARNING: Category '' in library LiquidCrystal is not valid. Setting to 'Uncategorized'
    Detecting libraries used...
    "C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=8000000L -DARDUINO=10804 -DARDUINO_AVR_PRO -DARDUINO_ARCH_AVR   "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\eightanaloginputs" "C:\Users\swbob\AppData\Local\Temp\arduino_build_998314\sketch\sketch_mar05a.ino.ino.cpp" -o "nul"
    "C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=8000000L -DARDUINO=10804 -DARDUINO_AVR_PRO -DARDUINO_ARCH_AVR   "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\eightanaloginputs" "-IC:\Program Files (x86)\Arduino\libraries\MySensors" "C:\Users\swbob\AppData\Local\Temp\arduino_build_998314\sketch\sketch_mar05a.ino.ino.cpp" -o "nul"
    "C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=8000000L -DARDUINO=10804 -DARDUINO_AVR_PRO -DARDUINO_ARCH_AVR   "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\eightanaloginputs" "-IC:\Program Files (x86)\Arduino\libraries\MySensors" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\SPI\src" "C:\Users\swbob\AppData\Local\Temp\arduino_build_998314\sketch\sketch_mar05a.ino.ino.cpp" -o "nul"
    "C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=8000000L -DARDUINO=10804 -DARDUINO_AVR_PRO -DARDUINO_ARCH_AVR   "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\eightanaloginputs" "-IC:\Program Files (x86)\Arduino\libraries\MySensors" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\SPI\src" "C:\Program Files (x86)\Arduino\libraries\MySensors\MyASM.S" -o "nul"
    "C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=8000000L -DARDUINO=10804 -DARDUINO_AVR_PRO -DARDUINO_ARCH_AVR   "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\eightanaloginputs" "-IC:\Program Files (x86)\Arduino\libraries\MySensors" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\SPI\src" "C:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\SPI\src\SPI.cpp" -o "nul"
    Generating function prototypes...
    "C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=8000000L -DARDUINO=10804 -DARDUINO_AVR_PRO -DARDUINO_ARCH_AVR   "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\eightanaloginputs" "-IC:\Program Files (x86)\Arduino\libraries\MySensors" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\SPI\src" "C:\Users\swbob\AppData\Local\Temp\arduino_build_998314\sketch\sketch_mar05a.ino.ino.cpp" -o "C:\Users\swbob\AppData\Local\Temp\arduino_build_998314\preproc\ctags_target_for_gcc_minus_e.cpp"
    In file included from D:\sketch_mar05a\sketch_mar05a.ino\sketch_mar05a.ino.ino:2:0:
    
    C:\Program Files (x86)\Arduino\libraries\MySensors/MySensors.h:426:2: error: #error No forward link or gateway feature activated. This means nowhere to send messages! Pretty pointless.
    
     #error No forward link or gateway feature activated. This means nowhere to send messages! Pretty pointless.
    
      ^
    
    Using library MySensors at version 2.3.2 in folder: C:\Program Files (x86)\Arduino\libraries\MySensors 
    Using library SPI at version 1.0 in folder: C:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\SPI 
    exit status 1
    Error compiling for board Arduino Pro or Pro Mini.
    `
    Hope it can be corrected
    Thanks`
    Development

  • Error ! nowhere to send
    mntlvrM mntlvr

    @tekka
    Had tried that before , so I was looking for the solution not by changing IDE but why did it fail, So I loaded Windows 10 Pro Workstation on a new drive booted from that drive and setup windows. Once windows was all configured I then installed exact same IDE and library as before and what do you know it worked just fine.
    Conclusion it was the OS that stopped Arduino IDE 1.8.4 not the IDE or the MySenors Library, and yes it took more time to trouble but now I know why and I don't have to guess.
    I have found that Windows 10 is very protective of it's self and once system becomes corrupt in the smallest of ways you can bet before long you will see in other applications things starting to "not work" like they use to when you first installed the OS.
    If I had the time or desire I would switch over to Linux but I am to heavily invested in Windows with my machines and software for now and have been using Windows ever since Windows 3.0
    Hope this might help others that might be having similar problems for the MySensors library's to fail when they should not be failing.So check out every avenue before blaming MySensors or the IDE
    Thanks for reading my post
    Bob

    Development

  • Error ! nowhere to send
    mntlvrM mntlvr

    Re: error No forward link or gateway feature activated. This means nowhere to send messages! Pretty pointless.

    Arduino: 1.8.4 (Windows 10), Board: "Arduino/Genuino Uno"
    
    C:\Program Files (x86)\Arduino\arduino-builder -dump-prefs -logger=machine -hardware C:\Program Files (x86)\Arduino\hardware -tools C:\Program Files (x86)\Arduino\tools-builder -tools C:\Program Files (x86)\Arduino\hardware\tools\avr -built-in-libraries C:\Program Files (x86)\Arduino\libraries -libraries C:\Users\swbob\OneDrive\Documents\Arduino\libraries -fqbn=arduino:avr:uno -ide-version=10804 -build-path C:\Users\swbob\AppData\Local\Temp\arduino_build_76312 -warnings=default -build-cache C:\Users\swbob\AppData\Local\Temp\arduino_cache_476719 -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.avrdude.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avr-gcc.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.arduinoOTA.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -verbose C:\Program Files (x86)\Arduino\libraries\MySensors\examples\GatewayW5100\GatewayW5100.ino
    C:\Program Files (x86)\Arduino\arduino-builder -compile -logger=machine -hardware C:\Program Files (x86)\Arduino\hardware -tools C:\Program Files (x86)\Arduino\tools-builder -tools C:\Program Files (x86)\Arduino\hardware\tools\avr -built-in-libraries C:\Program Files (x86)\Arduino\libraries -libraries C:\Users\swbob\OneDrive\Documents\Arduino\libraries -fqbn=arduino:avr:uno -ide-version=10804 -build-path C:\Users\swbob\AppData\Local\Temp\arduino_build_76312 -warnings=default -build-cache C:\Users\swbob\AppData\Local\Temp\arduino_cache_476719 -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.avrdude.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avr-gcc.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.arduinoOTA.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -verbose C:\Program Files (x86)\Arduino\libraries\MySensors\examples\GatewayW5100\GatewayW5100.ino
    Using board 'uno' from platform in folder: C:\Program Files (x86)\Arduino\hardware\arduino\avr
    Using core 'arduino' from platform in folder: C:\Program Files (x86)\Arduino\hardware\arduino\avr
    Detecting libraries used...
    "C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10804 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR   "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\standard" "C:\Users\swbob\AppData\Local\Temp\arduino_build_76312\sketch\GatewayW5100.ino.cpp" -o "nul"
    "C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10804 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR   "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\standard" "-IC:\Program Files (x86)\Arduino\libraries\Ethernet\src" "C:\Users\swbob\AppData\Local\Temp\arduino_build_76312\sketch\GatewayW5100.ino.cpp" -o "nul"
    "C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10804 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR   "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\standard" "-IC:\Program Files (x86)\Arduino\libraries\Ethernet\src" "-IC:\Program Files (x86)\Arduino\libraries\MySensors" "C:\Users\swbob\AppData\Local\Temp\arduino_build_76312\sketch\GatewayW5100.ino.cpp" -o "nul"
    "C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10804 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR   "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\standard" "-IC:\Program Files (x86)\Arduino\libraries\Ethernet\src" "-IC:\Program Files (x86)\Arduino\libraries\MySensors" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\SPI\src" "C:\Users\swbob\AppData\Local\Temp\arduino_build_76312\sketch\GatewayW5100.ino.cpp" -o "nul"
    "C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10804 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR   "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\standard" "-IC:\Program Files (x86)\Arduino\libraries\Ethernet\src" "-IC:\Program Files (x86)\Arduino\libraries\MySensors" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\SPI\src" "C:\Program Files (x86)\Arduino\libraries\Ethernet\src\Dhcp.cpp" -o "nul"
    "C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10804 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR   "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\standard" "-IC:\Program Files (x86)\Arduino\libraries\Ethernet\src" "-IC:\Program Files (x86)\Arduino\libraries\MySensors" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\SPI\src" "C:\Program Files (x86)\Arduino\libraries\Ethernet\src\Dns.cpp" -o "nul"
    "C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10804 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR   "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\standard" "-IC:\Program Files (x86)\Arduino\libraries\Ethernet\src" "-IC:\Program Files (x86)\Arduino\libraries\MySensors" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\SPI\src" "C:\Program Files (x86)\Arduino\libraries\Ethernet\src\Ethernet.cpp" -o "nul"
    "C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10804 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR   "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\standard" "-IC:\Program Files (x86)\Arduino\libraries\Ethernet\src" "-IC:\Program Files (x86)\Arduino\libraries\MySensors" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\SPI\src" "C:\Program Files (x86)\Arduino\libraries\Ethernet\src\EthernetClient.cpp" -o "nul"
    "C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10804 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR   "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\standard" "-IC:\Program Files (x86)\Arduino\libraries\Ethernet\src" "-IC:\Program Files (x86)\Arduino\libraries\MySensors" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\SPI\src" "C:\Program Files (x86)\Arduino\libraries\Ethernet\src\EthernetServer.cpp" -o "nul"
    "C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10804 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR   "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\standard" "-IC:\Program Files (x86)\Arduino\libraries\Ethernet\src" "-IC:\Program Files (x86)\Arduino\libraries\MySensors" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\SPI\src" "C:\Program Files (x86)\Arduino\libraries\Ethernet\src\EthernetUdp.cpp" -o "nul"
    "C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10804 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR   "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\standard" "-IC:\Program Files (x86)\Arduino\libraries\Ethernet\src" "-IC:\Program Files (x86)\Arduino\libraries\MySensors" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\SPI\src" "C:\Program Files (x86)\Arduino\libraries\Ethernet\src\socket.cpp" -o "nul"
    "C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10804 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR   "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\standard" "-IC:\Program Files (x86)\Arduino\libraries\Ethernet\src" "-IC:\Program Files (x86)\Arduino\libraries\MySensors" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\SPI\src" "C:\Program Files (x86)\Arduino\libraries\Ethernet\src\utility\socket.cpp" -o "nul"
    "C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10804 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR   "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\standard" "-IC:\Program Files (x86)\Arduino\libraries\Ethernet\src" "-IC:\Program Files (x86)\Arduino\libraries\MySensors" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\SPI\src" "C:\Program Files (x86)\Arduino\libraries\Ethernet\src\utility\w5100.cpp" -o "nul"
    "C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10804 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR   "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\standard" "-IC:\Program Files (x86)\Arduino\libraries\Ethernet\src" "-IC:\Program Files (x86)\Arduino\libraries\MySensors" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\SPI\src" "-IC:\Program Files (x86)\Arduino\libraries\MySensors\utility" "C:\Program Files (x86)\Arduino\libraries\MySensors\MyASM.S" -o "nul"
    "C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10804 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR   "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\standard" "-IC:\Program Files (x86)\Arduino\libraries\Ethernet\src" "-IC:\Program Files (x86)\Arduino\libraries\MySensors" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\SPI\src" "C:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\SPI\src\SPI.cpp" -o "nul"
    Generating function prototypes...
    "C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10804 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR   "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\standard" "-IC:\Program Files (x86)\Arduino\libraries\Ethernet\src" "-IC:\Program Files (x86)\Arduino\libraries\MySensors" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\SPI\src" "C:\Users\swbob\AppData\Local\Temp\arduino_build_76312\sketch\GatewayW5100.ino.cpp" -o "C:\Users\swbob\AppData\Local\Temp\arduino_build_76312\preproc\ctags_target_for_gcc_minus_e.cpp"
    In file included from C:\Program Files (x86)\Arduino\libraries\MySensors\examples\GatewayW5100\GatewayW5100.ino:126:0:
    
    C:\Program Files (x86)\Arduino\libraries\MySensors/MySensors.h:426:2: error: #error No forward link or gateway feature activated. This means nowhere to send messages! Pretty pointless.
    
     #error No forward link or gateway feature activated. This means nowhere to send messages! Pretty pointless.
    
      ^
    
    Using library Ethernet at version 2.0.0 in folder: C:\Program Files (x86)\Arduino\libraries\Ethernet 
    Using library MySensors at version 2.3.2 in folder: C:\Program Files (x86)\Arduino\libraries\MySensors 
    Using library SPI at version 1.0 in folder: C:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\SPI 
    exit status 1
    Error compiling for board Arduino/Genuino Uno.
    
    *
     * The MySensors Arduino library handles the wireless radio link and protocol
     * between your home built sensors/actuators and HA controller of choice.
     * The sensors forms a self healing radio network with optional repeaters. Each
     * repeater and gateway builds a routing tables in EEPROM which keeps track of the
     * network topology allowing messages to be routed to nodes.
     *
     * Created by Henrik Ekblad <henrik.ekblad@mysensors.org>
     * Copyright (C) 2013-2019 Sensnology AB
     * Full contributor list: https://github.com/mysensors/MySensors/graphs/contributors
     *
     * Documentation: http://www.mysensors.org
     * Support Forum: http://forum.mysensors.org
     *
     * This program is free software; you can redistribute it and/or
     * modify it under the terms of the GNU General Public License
     * version 2 as published by the Free Software Foundation.
     *
     *******************************
     *
     * REVISION HISTORY
     * Version 1.0 - Henrik Ekblad
     * Contribution by a-lurker and Anticimex
     * Contribution by Norbert Truchsess <norbert.truchsess@t-online.de>
     * Contribution by Tomas Hozza <thozza@gmail.com>
     *
     *
     * DESCRIPTION
     * The EthernetGateway sends data received from sensors to the ethernet link.
     * The gateway also accepts input on ethernet interface, which is then sent out to the radio network.
     *
     * The GW code is designed for Arduino 328p / 16MHz.  ATmega168 does not have enough memory to run this program.
     *
     * LED purposes:
     * - To use the feature, uncomment MY_DEFAULT_xxx_LED_PIN in the sketch below
     * - RX (green) - blink fast on radio message received. In inclusion mode will blink fast only on presentation received
     * - TX (yellow) - blink fast on radio message transmitted. In inclusion mode will blink slowly
     * - ERR (red) - fast blink on error during transmission error or receive crc error
     *
     * See http://www.mysensors.org/build/ethernet_gateway for wiring instructions.
     *
     */
    
    // Enable debug prints to serial monitor
    #define MY_DEBUG
    
    // Enable and select radio type attached
    #define MY_RADIO_RF24
    //#define MY_RADIO_NRF5_ESB
    //#define MY_RADIO_RFM69
    //#define MY_RADIO_RFM95
    
    // Enable gateway ethernet module type
    #define MY_GATEWAY_W5100
    
    // W5100 Ethernet module SPI enable (optional if using a shield/module that manages SPI_EN signal)
    //#define MY_W5100_SPI_EN 4
    
    // Enable Soft SPI for NRF radio (note different radio wiring is required)
    // The W5100 ethernet module seems to have a hard time co-operate with
    // radio on the same spi bus.
    #if !defined(MY_W5100_SPI_EN) && !defined(ARDUINO_ARCH_SAMD)
    #define MY_SOFTSPI
    #define MY_SOFT_SPI_SCK_PIN 14
    #define MY_SOFT_SPI_MISO_PIN 16
    #define MY_SOFT_SPI_MOSI_PIN 15
    #endif
    
    // When W5100 is connected we have to move CE/CSN pins for NRF radio
    #ifndef MY_RF24_CE_PIN
    #define MY_RF24_CE_PIN 5
    #endif
    #ifndef MY_RF24_CS_PIN
    #define MY_RF24_CS_PIN 6
    #endif
    
    // Enable UDP communication
    //#define MY_USE_UDP  // If using UDP you need to set MY_CONTROLLER_IP_ADDRESS or MY_CONTROLLER_URL_ADDRESS below
    
    // Enable MY_IP_ADDRESS here if you want a static ip address (no DHCP)
    #define MY_IP_ADDRESS 192,168,254,66
    
    // If using static ip you can define Gateway and Subnet address as well
    //#define MY_IP_GATEWAY_ADDRESS 192,168,178,1
    //#define MY_IP_SUBNET_ADDRESS 255,255,255,0
    
    // Renewal period if using DHCP
    //#define MY_IP_RENEWAL_INTERVAL 60000
    
    // The port to keep open on node server mode / or port to contact in client mode
    #define MY_PORT 5003
    
    // Controller ip address. Enables client mode (default is "server" mode).
    // Also enable this if MY_USE_UDP is used and you want sensor data sent somewhere.
    //#define MY_CONTROLLER_IP_ADDRESS 192, 168, 178, 254
    //#define MY_CONTROLLER_URL_ADDRESS "my.controller.org"
    
    // The MAC address can be anything you want but should be unique on your network.
    // Newer boards have a MAC address printed on the underside of the PCB, which you can (optionally) use.
    // Note that most of the Arduino examples use  "DEAD BEEF FEED" for the MAC address.
    #define MY_MAC_ADDRESS 0xDC, 0xAB, 0xBD, 0xFF, 0xFE, 0xED
    
    
    // Enable inclusion mode
    #define MY_INCLUSION_MODE_FEATURE
    // Enable Inclusion mode button on gateway
    //#define MY_INCLUSION_BUTTON_FEATURE
    // Set inclusion mode duration (in seconds)
    #define MY_INCLUSION_MODE_DURATION 60
    // Digital pin used for inclusion mode button
    #define MY_INCLUSION_MODE_BUTTON_PIN  3
    
    // Set blinking period
    #define MY_DEFAULT_LED_BLINK_PERIOD 300
    
    // Flash leds on rx/tx/err
    // Uncomment to override default HW configurations
    #define MY_DEFAULT_ERR_LED_PIN 7  // Error led pin
    #define MY_DEFAULT_RX_LED_PIN  8  // Receive led pin
    #define MY_DEFAULT_TX_LED_PIN  9  // Transmit led pin
    
    #if defined(MY_USE_UDP)
    #include <EthernetUdp.h>
    #endif
    #include <Ethernet.h>
    #include <MySensors.h>
    
    void setup()
    {
    	// Setup locally attached sensors
    }
    
    void presentation()
    {
    	// Present locally attached sensors here
    }
    
    void loop()
    {
    	// Send locally attached sensors data here
    }
    
    

    Brand New Windows 10 PRO 64bit OS, Brand New Installation of Arduino IDE and Sketch , used from MySensors v2.3.2 no mods just loaded and checked to see if it would compile and this is not the only example that gives such an Error.
    The Motion sketch does the same and so does the sketch in Node-manager, Motion
    Need help
    Arduino installed all of the Libraries I just update the ones I needed by using the Library Manager in the IDE v1.84
    Can anyone Help very limited info in this forum on this error.
    Thanks

    Development

  • Compile errors with Nodemanager
    mntlvrM mntlvr
    Arduino: 1.8.3 (Windows 10), Board: "Arduino Uno"
    
    C:\Program Files (x86)\Arduino\arduino-builder -dump-prefs -logger=machine -hardware C:\Program Files (x86)\Arduino\hardware -hardware C:\Users\swbob\AppData\Local\Arduino15\packages -tools C:\Program Files (x86)\Arduino\tools-builder -tools C:\Program Files (x86)\Arduino\hardware\tools\avr -tools C:\Users\swbob\AppData\Local\Arduino15\packages -built-in-libraries C:\Program Files (x86)\Arduino\libraries -libraries C:\Users\swbob\AppData\Local\Arduino15\libraries -fqbn=arduino:avr:uno -ide-version=10803 -build-path C:\Users\swbob\AppData\Local\Temp\arduino_build_971058 -warnings=default -build-cache C:\Users\swbob\AppData\Local\Temp\arduino_cache_950827 -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.avr-gcc.path=C:\Users\swbob\AppData\Local\Arduino15\packages\arduino\tools\avr-gcc\7.3.0-atmel3.6.1-arduino5 -prefs=runtime.tools.avrdude.path=C:\Users\swbob\AppData\Local\Arduino15\packages\arduino\tools\avrdude\6.3.0-arduino17 -prefs=runtime.tools.arduinoOTA.path=C:\Users\swbob\AppData\Local\Arduino15\packages\arduino\tools\arduinoOTA\1.3.0 -verbose D:\My.Node.Managed.Motion.Sensor\My.Node.Managed.Motion.Sensor.ino
    C:\Program Files (x86)\Arduino\arduino-builder -compile -logger=machine -hardware C:\Program Files (x86)\Arduino\hardware -hardware C:\Users\swbob\AppData\Local\Arduino15\packages -tools C:\Program Files (x86)\Arduino\tools-builder -tools C:\Program Files (x86)\Arduino\hardware\tools\avr -tools C:\Users\swbob\AppData\Local\Arduino15\packages -built-in-libraries C:\Program Files (x86)\Arduino\libraries -libraries C:\Users\swbob\AppData\Local\Arduino15\libraries -fqbn=arduino:avr:uno -ide-version=10803 -build-path C:\Users\swbob\AppData\Local\Temp\arduino_build_971058 -warnings=default -build-cache C:\Users\swbob\AppData\Local\Temp\arduino_cache_950827 -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.avr-gcc.path=C:\Users\swbob\AppData\Local\Arduino15\packages\arduino\tools\avr-gcc\7.3.0-atmel3.6.1-arduino5 -prefs=runtime.tools.avrdude.path=C:\Users\swbob\AppData\Local\Arduino15\packages\arduino\tools\avrdude\6.3.0-arduino17 -prefs=runtime.tools.arduinoOTA.path=C:\Users\swbob\AppData\Local\Arduino15\packages\arduino\tools\arduinoOTA\1.3.0 -verbose D:\My.Node.Managed.Motion.Sensor\My.Node.Managed.Motion.Sensor.ino
    Using board 'uno' from platform in folder: C:\Users\swbob\AppData\Local\Arduino15\packages\arduino\hardware\avr\1.8.2
    Using core 'arduino' from platform in folder: C:\Users\swbob\AppData\Local\Arduino15\packages\arduino\hardware\avr\1.8.2
    Detecting libraries used...
    "C:\Users\swbob\AppData\Local\Arduino15\packages\arduino\tools\avr-gcc\7.3.0-atmel3.6.1-arduino5/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing  -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR   "-IC:\Users\swbob\AppData\Local\Arduino15\packages\arduino\hardware\avr\1.8.2\cores\arduino" "-IC:\Users\swbob\AppData\Local\Arduino15\packages\arduino\hardware\avr\1.8.2\variants\standard" "C:\Users\swbob\AppData\Local\Temp\arduino_build_971058\sketch\My.Node.Managed.Motion.Sensor.ino.cpp" -o "nul"
    "C:\Users\swbob\AppData\Local\Arduino15\packages\arduino\tools\avr-gcc\7.3.0-atmel3.6.1-arduino5/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing  -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR   "-IC:\Users\swbob\AppData\Local\Arduino15\packages\arduino\hardware\avr\1.8.2\cores\arduino" "-IC:\Users\swbob\AppData\Local\Arduino15\packages\arduino\hardware\avr\1.8.2\variants\standard" "-IC:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager" "C:\Users\swbob\AppData\Local\Temp\arduino_build_971058\sketch\My.Node.Managed.Motion.Sensor.ino.cpp" -o "nul"
    "C:\Users\swbob\AppData\Local\Arduino15\packages\arduino\tools\avr-gcc\7.3.0-atmel3.6.1-arduino5/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing  -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR   "-IC:\Users\swbob\AppData\Local\Arduino15\packages\arduino\hardware\avr\1.8.2\cores\arduino" "-IC:\Users\swbob\AppData\Local\Arduino15\packages\arduino\hardware\avr\1.8.2\variants\standard" "-IC:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager" "-IC:\Users\swbob\AppData\Local\Arduino15\libraries\MySensors" "C:\Users\swbob\AppData\Local\Temp\arduino_build_971058\sketch\My.Node.Managed.Motion.Sensor.ino.cpp" -o "nul"
    "C:\Users\swbob\AppData\Local\Arduino15\packages\arduino\tools\avr-gcc\7.3.0-atmel3.6.1-arduino5/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing  -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR   "-IC:\Users\swbob\AppData\Local\Arduino15\packages\arduino\hardware\avr\1.8.2\cores\arduino" "-IC:\Users\swbob\AppData\Local\Arduino15\packages\arduino\hardware\avr\1.8.2\variants\standard" "-IC:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager" "-IC:\Users\swbob\AppData\Local\Arduino15\libraries\MySensors" "-IC:\Users\swbob\AppData\Local\Arduino15\packages\arduino\hardware\avr\1.8.2\libraries\SPI\src" "C:\Users\swbob\AppData\Local\Temp\arduino_build_971058\sketch\My.Node.Managed.Motion.Sensor.ino.cpp" -o "nul"
    "C:\Users\swbob\AppData\Local\Arduino15\packages\arduino\tools\avr-gcc\7.3.0-atmel3.6.1-arduino5/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing  -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR   "-IC:\Users\swbob\AppData\Local\Arduino15\packages\arduino\hardware\avr\1.8.2\cores\arduino" "-IC:\Users\swbob\AppData\Local\Arduino15\packages\arduino\hardware\avr\1.8.2\variants\standard" "-IC:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager" "-IC:\Users\swbob\AppData\Local\Arduino15\libraries\MySensors" "-IC:\Users\swbob\AppData\Local\Arduino15\packages\arduino\hardware\avr\1.8.2\libraries\SPI\src" "C:\Users\swbob\AppData\Local\Arduino15\packages\arduino\hardware\avr\1.8.2\libraries\SPI\src\SPI.cpp" -o "nul"
    Generating function prototypes...
    "C:\Users\swbob\AppData\Local\Arduino15\packages\arduino\tools\avr-gcc\7.3.0-atmel3.6.1-arduino5/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing  -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR   "-IC:\Users\swbob\AppData\Local\Arduino15\packages\arduino\hardware\avr\1.8.2\cores\arduino" "-IC:\Users\swbob\AppData\Local\Arduino15\packages\arduino\hardware\avr\1.8.2\variants\standard" "-IC:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager" "-IC:\Users\swbob\AppData\Local\Arduino15\libraries\MySensors" "-IC:\Users\swbob\AppData\Local\Arduino15\packages\arduino\hardware\avr\1.8.2\libraries\SPI\src" "C:\Users\swbob\AppData\Local\Temp\arduino_build_971058\sketch\My.Node.Managed.Motion.Sensor.ino.cpp" -o "C:\Users\swbob\AppData\Local\Temp\arduino_build_971058\preproc\ctags_target_for_gcc_minus_e.cpp"
    "C:\Program Files (x86)\Arduino\tools-builder\ctags\5.8-arduino11/ctags" -u --language-force=c++ -f - --c++-kinds=svpf --fields=KSTtzns --line-directives "C:\Users\swbob\AppData\Local\Temp\arduino_build_971058\preproc\ctags_target_for_gcc_minus_e.cpp"
    Compiling sketch...
    "C:\Users\swbob\AppData\Local\Arduino15\packages\arduino\tools\avr-gcc\7.3.0-atmel3.6.1-arduino5/bin/avr-g++" -c -g -Os  -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR   "-IC:\Users\swbob\AppData\Local\Arduino15\packages\arduino\hardware\avr\1.8.2\cores\arduino" "-IC:\Users\swbob\AppData\Local\Arduino15\packages\arduino\hardware\avr\1.8.2\variants\standard" "-IC:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager" "-IC:\Users\swbob\AppData\Local\Arduino15\libraries\MySensors" "-IC:\Users\swbob\AppData\Local\Arduino15\packages\arduino\hardware\avr\1.8.2\libraries\SPI\src" "C:\Users\swbob\AppData\Local\Temp\arduino_build_971058\sketch\My.Node.Managed.Motion.Sensor.ino.cpp" -o "C:\Users\swbob\AppData\Local\Temp\arduino_build_971058\sketch\My.Node.Managed.Motion.Sensor.ino.cpp.o"
    In file included from C:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager/nodemanager/Node.h:26:0,
    
                     from C:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager/nodemanager/Node.cpp:24,
    
                     from C:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager/MySensors_NodeManager.h:82,
    
                     from D:\My.Node.Managed.Motion.Sensor\My.Node.Managed.Motion.Sensor.ino:43:
    
    C:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager/nodemanager/Sensor.h:132:28: error: 'MODE_NOT_DEFINED' was not declared in this scope
    
      uint8_t _interrupt_mode = MODE_NOT_DEFINED;
    
                                ^~~~~~~~~~~~~~~~
    
    C:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager/nodemanager/Sensor.h:132:28: note: suggested alternative: '_SIZE_T_DEFINED'
    
      uint8_t _interrupt_mode = MODE_NOT_DEFINED;
    
                                ^~~~~~~~~~~~~~~~
    
                                _SIZE_T_DEFINED
    
    In file included from C:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager/nodemanager/Node.cpp:24:0,
    
                     from C:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager/MySensors_NodeManager.h:82,
    
                     from D:\My.Node.Managed.Motion.Sensor\My.Node.Managed.Motion.Sensor.ino:43:
    
    C:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager/nodemanager/Node.h:186:30: error: 'MODE_NOT_DEFINED' was not declared in this scope
    
      uint8_t _interrupt_1_mode = MODE_NOT_DEFINED;
    
                                  ^~~~~~~~~~~~~~~~
    
    C:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager/nodemanager/Node.h:186:30: note: suggested alternative: '_SIZE_T_DEFINED'
    
      uint8_t _interrupt_1_mode = MODE_NOT_DEFINED;
    
                                  ^~~~~~~~~~~~~~~~
    
                                  _SIZE_T_DEFINED
    
    C:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager/nodemanager/Node.h:187:30: error: 'MODE_NOT_DEFINED' was not declared in this scope
    
      uint8_t _interrupt_2_mode = MODE_NOT_DEFINED;
    
                                  ^~~~~~~~~~~~~~~~
    
    C:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager/nodemanager/Node.h:187:30: note: suggested alternative: '_SIZE_T_DEFINED'
    
      uint8_t _interrupt_2_mode = MODE_NOT_DEFINED;
    
                                  ^~~~~~~~~~~~~~~~
    
                                  _SIZE_T_DEFINED
    
    In file included from C:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager/MySensors_NodeManager.h:82:0,
    
                     from D:\My.Node.Managed.Motion.Sensor\My.Node.Managed.Motion.Sensor.ino:43:
    
    C:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager/nodemanager/Node.cpp: In member function 'void NodeManager::setup()':
    
    C:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager/nodemanager/Node.cpp:205:43: error: 'getControllerConfig' was not declared in this scope
    
      if (_get_controller_config) _is_metric = getControllerConfig().isMetric;
    
                                               ^~~~~~~~~~~~~~~~~~~
    
    C:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager/nodemanager/Node.cpp:205:43: note: suggested alternative: 'ControllerConfig'
    
      if (_get_controller_config) _is_metric = getControllerConfig().isMetric;
    
                                               ^~~~~~~~~~~~~~~~~~~
    
                                               ControllerConfig
    
    In file included from C:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager/MySensors_NodeManager.h:82:0,
    
                     from D:\My.Node.Managed.Motion.Sensor\My.Node.Managed.Motion.Sensor.ino:43:
    
    C:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager/nodemanager/Node.cpp: In member function 'void NodeManager::loop()':
    
    C:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager/nodemanager/Node.cpp:262:12: error: 'class MyMessage' has no member named 'clear'
    
       _message.clear();
    
                ^~~~~
    
    C:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager/nodemanager/Node.cpp: In member function 'void NodeManager::_setupInterrupts()':
    
    C:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager/nodemanager/Node.cpp:489:28: error: 'MODE_NOT_DEFINED' was not declared in this scope
    
       if (_interrupt_1_mode != MODE_NOT_DEFINED) {
    
                                ^~~~~~~~~~~~~~~~
    
    C:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager/nodemanager/Node.cpp:489:28: note: suggested alternative: '_SIZE_T_DEFINED'
    
       if (_interrupt_1_mode != MODE_NOT_DEFINED) {
    
                                ^~~~~~~~~~~~~~~~
    
                                _SIZE_T_DEFINED
    
    C:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager/nodemanager/Node.cpp:500:28: error: 'MODE_NOT_DEFINED' was not declared in this scope
    
       if (_interrupt_2_mode != MODE_NOT_DEFINED) {
    
                                ^~~~~~~~~~~~~~~~
    
    C:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager/nodemanager/Node.cpp:500:28: note: suggested alternative: '_SIZE_T_DEFINED'
    
       if (_interrupt_2_mode != MODE_NOT_DEFINED) {
    
                                ^~~~~~~~~~~~~~~~
    
                                _SIZE_T_DEFINED
    
    C:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager/nodemanager/Node.cpp: In member function 'void NodeManager::sendMessage(uint8_t, uint8_t, int)':
    
    C:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager/nodemanager/Node.cpp:535:12: error: 'class MyMessage' has no member named 'clear'
    
       _message.clear();
    
                ^~~~~
    
    C:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager/nodemanager/Node.cpp: In member function 'void NodeManager::sendMessage(uint8_t, uint8_t, float, uint8_t)':
    
    C:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager/nodemanager/Node.cpp:540:12: error: 'class MyMessage' has no member named 'clear'
    
       _message.clear();
    
                ^~~~~
    
    C:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager/nodemanager/Node.cpp: In member function 'void NodeManager::sendMessage(uint8_t, uint8_t, double, uint8_t)':
    
    C:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager/nodemanager/Node.cpp:545:12: error: 'class MyMessage' has no member named 'clear'
    
       _message.clear();
    
                ^~~~~
    
    C:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager/nodemanager/Node.cpp: In member function 'void NodeManager::sendMessage(uint8_t, uint8_t, const char*)':
    
    C:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager/nodemanager/Node.cpp:550:12: error: 'class MyMessage' has no member named 'clear'
    
       _message.clear();
    
                ^~~~~
    
    C:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager/nodemanager/Node.cpp: In member function 'void NodeManager::_sleep()':
    
    C:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager/nodemanager/Node.cpp:648:46: error: 'MODE_NOT_DEFINED' was not declared in this scope
    
       int interrupt_1_pin = _interrupt_1_mode == MODE_NOT_DEFINED ? INTERRUPT_NOT_DEFINED  : digitalPinToInterrupt(INTERRUPT_PIN_1);
    
                                                  ^~~~~~~~~~~~~~~~
    
    C:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager/nodemanager/Node.cpp:648:46: note: suggested alternative: '_SIZE_T_DEFINED'
    
       int interrupt_1_pin = _interrupt_1_mode == MODE_NOT_DEFINED ? INTERRUPT_NOT_DEFINED  : digitalPinToInterrupt(INTERRUPT_PIN_1);
    
                                                  ^~~~~~~~~~~~~~~~
    
                                                  _SIZE_T_DEFINED
    
    C:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager/nodemanager/Node.cpp:648:65: error: 'INTERRUPT_NOT_DEFINED' was not declared in this scope
    
       int interrupt_1_pin = _interrupt_1_mode == MODE_NOT_DEFINED ? INTERRUPT_NOT_DEFINED  : digitalPinToInterrupt(INTERRUPT_PIN_1);
    
                                                                     ^~~~~~~~~~~~~~~~~~~~~
    
    C:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager/nodemanager/Node.cpp:648:65: note: suggested alternative: 'INTERRUPT_PIN_1'
    
       int interrupt_1_pin = _interrupt_1_mode == MODE_NOT_DEFINED ? INTERRUPT_NOT_DEFINED  : digitalPinToInterrupt(INTERRUPT_PIN_1);
    
                                                                     ^~~~~~~~~~~~~~~~~~~~~
    
                                                                     INTERRUPT_PIN_1
    
    C:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager/nodemanager/Node.cpp:652:118: error: no matching function for call to 'sleep(int&, uint8_t&, int&, uint8_t&, long unsigned int, bool&)'
    
        interrupt = sleep(interrupt_1_pin,_interrupt_1_mode,interrupt_2_pin,_interrupt_2_mode,sleep_time*1000,_smart_sleep);
    
                                                                                                                          ^
    
    In file included from C:\Users\swbob\AppData\Local\Arduino15\libraries\MySensors/MySensors.h:293:0,
    
                     from C:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager/MySensors_NodeManager.h:43,
    
                     from D:\My.Node.Managed.Motion.Sensor\My.Node.Managed.Motion.Sensor.ino:43:
    
    C:\Users\swbob\AppData\Local\Arduino15\libraries\MySensors/core/MySensorsCore.cpp:442:8: note: candidate: int8_t sleep(long unsigned int)
    
     int8_t sleep(unsigned long ms) {
    
            ^~~~~
    
    C:\Users\swbob\AppData\Local\Arduino15\libraries\MySensors/core/MySensorsCore.cpp:442:8: note:   candidate expects 1 argument, 6 provided
    
    C:\Users\swbob\AppData\Local\Arduino15\libraries\MySensors/core/MySensorsCore.cpp:474:8: note: candidate: int8_t sleep(uint8_t, uint8_t, long unsigned int)
    
     int8_t sleep(uint8_t interrupt, uint8_t mode, unsigned long ms) {
    
            ^~~~~
    
    C:\Users\swbob\AppData\Local\Arduino15\libraries\MySensors/core/MySensorsCore.cpp:474:8: note:   candidate expects 3 arguments, 6 provided
    
    C:\Users\swbob\AppData\Local\Arduino15\libraries\MySensors/core/MySensorsCore.cpp:507:8: note: candidate: int8_t sleep(uint8_t, uint8_t, uint8_t, uint8_t, long unsigned int)
    
     int8_t sleep(uint8_t interrupt1, uint8_t mode1, uint8_t interrupt2, uint8_t mode2, unsigned long ms) {
    
            ^~~~~
    
    C:\Users\swbob\AppData\Local\Arduino15\libraries\MySensors/core/MySensorsCore.cpp:507:8: note:   candidate expects 5 arguments, 6 provided
    
    In file included from C:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager/MySensors_NodeManager.h:87:0,
    
                     from D:\My.Node.Managed.Motion.Sensor\My.Node.Managed.Motion.Sensor.ino:43:
    
    C:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager/nodemanager/Sensor.cpp: In member function 'void Sensor::setup()':
    
    C:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager/nodemanager/Sensor.cpp:162:25: error: 'MODE_NOT_DEFINED' was not declared in this scope
    
      if (_interrupt_mode != MODE_NOT_DEFINED) {
    
                             ^~~~~~~~~~~~~~~~
    
    C:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager/nodemanager/Sensor.cpp:162:25: note: suggested alternative: '_SIZE_T_DEFINED'
    
      if (_interrupt_mode != MODE_NOT_DEFINED) {
    
                             ^~~~~~~~~~~~~~~~
    
                             _SIZE_T_DEFINED
    
    Using library NodeManager at version 1.8.0 in folder: C:\Users\swbob\AppData\Local\Arduino15\libraries\NodeManager 
    Using library MySensors at version 2.0.0 in folder: C:\Users\swbob\AppData\Local\Arduino15\libraries\MySensors 
    Using library SPI at version 1.0 in folder: C:\Users\swbob\AppData\Local\Arduino15\packages\arduino\hardware\avr\1.8.2\libraries\SPI 
    exit status 1
    Error compiling for board Arduino Uno.
    
    Why do I get these compile errors, have used this sketch before have changed nothing in my computer or installiation. 
    I have this same sketch as well as the example for nodemanager motion sensor and get the same results. I have tried on 3 different OS
    Help
    I am using Library 2.0 and IDE 1.83
    Windows 10 Pro
    
    General Discussion

  • Library Compatabilty under Vera UI7
    mntlvrM mntlvr

    No I am using Ethernet gateway on a Vera 3 as stated , I think. I have loaded the newest files to my Vera 5 different times and got same results. I create app then wait for Vera to update by reloading and as soon as Vera reloads app is gone from any view. I know it is their because my old sensors still work the routine they are programmed to do.
    The issue is Vera 3 does not show the MY Sensors app after updating to latest. Now 1.42 worked for long time with no issue so the issue has to be between Vera 3 and new updates . Tech people can not help because it is a third party issue they tell me
    now my Gateway is updated to library 2.3.2 and sees my old sensors just find but will not include the new motion sketch , it reuses to give that sketch and Child ID. !TSF:SID:FAIL,ID=0
    Any help
    Here is image of my screen in web Browser before updating
    a21bbe43-e05b-45e5-bf2f-89aad4e1188a-image.png
    can't show you after because after uploading newest files from MYSenors webpage and creating the app their is nothing to show ,empty
    Now my cell phone app for Vera shows the app with all of the proper library numbers 2.3.2 and the version 1.5

    Vera

  • Library Compatabilty under Vera UI7
    mntlvrM mntlvr

    Thanks for the Information, I see you have Vera Plus , I have Vera 3 and when I updated the files and created the app. when Vera 3 was done with reload the app disappeared and has yet to show itself in web browser.
    Now I have phone app for Vera and it shows the app with the correct library 2.3.2 so not sure why I have this problem when logging in to my Vera thru a web browser
    running latest update for Vera 3

    Vera

  • Library Compatabilty under Vera UI7
    mntlvrM mntlvr

    Hey Guys and Gals
    I have A Vera that has been running the My Sensors 1.4.2 Library.
    I have the latest Vera update installed so no issue, should I update my GW app that is installed on my Vera ?
    I was wondering if the new 2.3.2 library is compatibility with this old version I have in my Vera.
    And if not then I guess I have to update all of my Sensors and LUX sensors to 2..3.2 Library ?????
    Any thoughts?
    Thanks

    Vera

  • Using library 2.0
    mntlvrM mntlvr

    I have built an Ethernet Gateway using an Adruino UNO (real thing) and the small W5100 board, the one shown on the how to build page of Ethernet Gateway. I have also built on e motion sensor fusing same library. Now I seem to have plenty of serial activity going on at the serial port of the GW and also of the motion sensor.

    0;255;3;0;9;Starting gateway (RNNGA-, 2.0.0)
    0;255;3;0;9;TSM:INIT
    0;255;3;0;9;TSM:RADIO:OK
    0;255;3;0;9;TSM:GW MODE
    0;255;3;0;9;TSM:READY
    IP: 192.168.254.60
    0;255;3;0;9;No registration required
    0;255;3;0;9;Init complete, id=0, parent=0, distance=0, registration=1
    0;255;3;0;9;TSP:MSG:READ 25-25-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
    0;255;3;0;9;TSP:MSG:BC
    0;255;3;0;9;TSP:MSG:FPAR REQ (sender=25)
    0;255;3;0;9;TSP:CHKUPL:OK
    0;255;3;0;9;TSP:MSG:GWL OK
    0;255;3;0;9;!TSP:MSG:SEND 0-0-25-25 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=fail:0
    0;255;3;0;9;TSP:SANCHK:OK
    0;255;3;0;9;TSP:SANCHK:OK
    0;255;3;0;9;TSP:SANCHK:OK
    0;255;3;0;9;TSP:MSG:READ 21-21-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
    0;255;3;0;9;TSP:MSG:BC
    0;255;3;0;9;TSP:MSG:FPAR REQ (sender=21)
    0;255;3;0;9;TSP:CHKUPL:OK
    0;255;3;0;9;TSP:MSG:GWL OK
    0;255;3;0;9;TSP:MSG:SEND 0-0-21-21 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=ok:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=255,c=3,t=24,pt=1,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:PINGED (ID=21, hops=1)
    0;255;3;0;9;!TSP:MSG:SEND 0-0-21-21 s=255,c=3,t=25,pt=1,l=1,sg=0,ft=0,st=fail:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=255,c=0,t=17,pt=0,l=5,sg=0:2.0.0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=255,c=3,t=6,pt=1,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=255,c=3,t=11,pt=0,l=15,sg=0:Stairway Sensor
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=255,c=3,t=12,pt=0,l=3,sg=0:2.0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=0,t=1,pt=0,l=0,sg=0:
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=255,c=3,t=26,pt=1,l=1,sg=0:2
    0;255;3;0;9;!TSP:MSG:SEND 0-0-21-21 s=255,c=3,t=27,pt=1,l=1,sg=0,ft=0,st=fail:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 25-25-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
    0;255;3;0;9;TSP:MSG:BC
    0;255;3;0;9;TSP:MSG:FPAR REQ (sender=25)
    0;255;3;0;9;TSP:CHKUPL:OK
    0;255;3;0;9;TSP:MSG:GWL OK
    0;255;3;0;9;!TSP:MSG:SEND 0-0-25-25 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=fail:0
    0;255;3;0;9;TSP:SANCHK:OK
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:SANCHK:OK
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;!TSP:SANCHK:FAIL
    0;255;3;0;9;!TSM:FAILURE
    0;255;3;0;9;TSM:PDT
    0;255;3;0;9;TSM:INIT
    0;255;3;0;9;TSM:RADIO:OK
    0;255;3;0;9;TSM:GW MODE
    0;255;3;0;9;TSM:READY
    0;255;3;0;9;TSP:MSG:READ 21-21-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
    0;255;3;0;9;TSP:MSG:BC
    0;255;3;0;9;TSP:MSG:FPAR REQ (sender=21)
    0;255;3;0;9;TSP:CHKUPL:OK
    0;255;3;0;9;TSP:MSG:GWL OK
    0;255;3;0;9;!TSP:MSG:SEND 0-0-21-21 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=fail:0
    0;255;3;0;9;TSP:MSG:READ 25-25-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
    0;255;3;0;9;TSP:MSG:BC
    0;255;3;0;9;TSP:MSG:FPAR REQ (sender=25)
    0;255;3;0;9;TSP:CHKUPL:OK
    0;255;3;0;9;TSP:MSG:GWL OK
    0;255;3;0;9;!TSP:MSG:SEND 0-0-25-25 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=fail:0
    0;255;3;0;9;TSP:SANCHK:OK
    0;255;3;0;9;TSP:MSG:READ 21-21-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
    0;255;3;0;9;TSP:MSG:BC
    0;255;3;0;9;TSP:MSG:FPAR REQ (sender=21)
    0;255;3;0;9;TSP:CHKUPL:OK
    0;255;3;0;9;TSP:MSG:GWL OK
    0;255;3;0;9;TSP:MSG:SEND 0-0-21-21 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=ok:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=255,c=3,t=24,pt=1,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:PINGED (ID=21, hops=1)
    0;255;3;0;9;!TSP:MSG:SEND 0-0-21-21 s=255,c=3,t=25,pt=1,l=1,sg=0,ft=0,st=fail:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:SANCHK:OK
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 25-25-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
    0;255;3;0;9;TSP:MSG:BC
    0;255;3;0;9;TSP:MSG:FPAR REQ (sender=25)
    0;255;3;0;9;TSP:CHKUPL:OK
    0;255;3;0;9;TSP:MSG:GWL OK
    0;255;3;0;9;!TSP:MSG:SEND 0-0-25-25 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=fail:0
    0;255;3;0;9;TSP:SANCHK:OK
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;Eth: connect
    0;255;3;0;9;Eth: 0;0;3;0;2;Get Version
    0;255;3;0;9;Eth: 
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:SANCHK:OK
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;Eth: disconnect
    0;255;3;0;9;!TSP:SANCHK:FAIL
    0;255;3;0;9;!TSM:FAILURE
    0;255;3;0;9;TSM:PDT
    0;255;3;0;9;TSM:INIT
    0;255;3;0;9;TSM:RADIO:OK
    0;255;3;0;9;TSM:GW MODE
    0;255;3;0;9;TSM:READY
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:SANCHK:OK
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:SANCHK:OK
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:SANCHK:OK
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:SANCHK:OK
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:SANCHK:OK
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:SANCHK:OK
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:SANCHK:OK
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:SANCHK:OK
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:SANCHK:OK
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:SANCHK:OK
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
    0;255;3;0;9;TSP:MSG:BC
    0;255;3;0;9;TSP:MSG:FPAR REQ (sender=21)
    0;255;3;0;9;TSP:CHKUPL:OK
    0;255;3;0;9;TSP:MSG:GWL OK
    0;255;3;0;9;!TSP:MSG:SEND 0-0-21-21 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=fail:0
    0;255;3;0;9;TSP:MSG:READ 21-21-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
    0;255;3;0;9;TSP:MSG:BC
    0;255;3;0;9;TSP:MSG:FPAR REQ (sender=21)
    0;255;3;0;9;TSP:CHKUPL:OK
    0;255;3;0;9;TSP:MSG:GWL OK
    0;255;3;0;9;!TSP:MSG:SEND 0-0-21-21 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=fail:0
    0;255;3;0;9;TSP:MSG:READ 25-25-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
    0;255;3;0;9;TSP:MSG:BC
    0;255;3;0;9;TSP:MSG:FPAR REQ (sender=25)
    0;255;3;0;9;TSP:CHKUPL:OK
    0;255;3;0;9;TSP:MSG:GWL OK
    0;255;3;0;9;!TSP:MSG:SEND 0-0-25-25 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=fail:0
    0;255;3;0;9;TSP:MSG:READ 21-21-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
    0;255;3;0;9;TSP:MSG:BC
    0;255;3;0;9;TSP:MSG:FPAR REQ (sender=21)
    0;255;3;0;9;TSP:CHKUPL:OK
    0;255;3;0;9;TSP:MSG:GWL OK
    0;255;3;0;9;!TSP:MSG:SEND 0-0-21-21 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=fail:0
    0;255;3;0;9;TSP:SANCHK:OK
    0;255;3;0;9;TSP:MSG:READ 21-21-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
    0;255;3;0;9;TSP:MSG:BC
    0;255;3;0;9;TSP:MSG:FPAR REQ (sender=21)
    0;255;3;0;9;TSP:CHKUPL:OK
    0;255;3;0;9;TSP:MSG:GWL OK
    0;255;3;0;9;!TSP:MSG:SEND 0-0-21-21 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=fail:0
    0;255;3;0;9;TSP:MSG:READ 25-25-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
    0;255;3;0;9;TSP:MSG:BC
    0;255;3;0;9;TSP:MSG:FPAR REQ (sender=25)
    0;255;3;0;9;TSP:CHKUPL:OK
    0;255;3;0;9;TSP:MSG:GWL OK
    0;255;3;0;9;!TSP:MSG:SEND 0-0-25-25 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=fail:0
    0;255;3;0;9;TSP:SANCHK:OK
    0;255;3;0;9;TSP:SANCHK:OK
    0;255;3;0;9;TSP:SANCHK:OK
    0;255;3;0;9;TSP:SANCHK:OK
    0;255;3;0;9;TSP:SANCHK:OK
    0;255;3;0;9;TSP:MSG:READ 21-21-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
    0;255;3;0;9;TSP:MSG:BC
    0;255;3;0;9;TSP:MSG:FPAR REQ (sender=21)
    0;255;3;0;9;TSP:CHKUPL:OK
    0;255;3;0;9;TSP:MSG:GWL OK
    0;255;3;0;9;!TSP:MSG:SEND 0-0-21-21 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=fail:0
    0;255;3;0;9;TSP:MSG:READ 21-21-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
    0;255;3;0;9;TSP:MSG:BC
    0;255;3;0;9;TSP:MSG:FPAR REQ (sender=21)
    0;255;3;0;9;TSP:CHKUPL:OK
    0;255;3;0;9;TSP:MSG:GWL OK
    0;255;3;0;9;!TSP:MSG:SEND 0-0-21-21 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=fail:0
    0;255;3;0;9;TSP:SANCHK:OK
    0;255;3;0;9;TSP:MSG:READ 21-21-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
    0;255;3;0;9;TSP:MSG:BC
    0;255;3;0;9;TSP:MSG:FPAR REQ (sender=21)
    0;255;3;0;9;TSP:CHKUPL:OK
    0;255;3;0;9;TSP:MSG:GWL OK
    0;255;3;0;9;!TSP:MSG:SEND 0-0-21-21 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=fail:0
    0;255;3;0;9;TSP:SANCHK:OK
    0;255;3;0;9;TSP:MSG:READ 21-21-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
    0;255;3;0;9;TSP:MSG:BC
    0;255;3;0;9;TSP:MSG:FPAR REQ (sender=21)
    0;255;3;0;9;TSP:CHKUPL:OK
    0;255;3;0;9;TSP:MSG:GWL OK
    0;255;3;0;9;!TSP:MSG:SEND 0-0-21-21 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=fail:0
    0;255;3;0;9;TSP:SANCHK:OK
    0;255;3;0;9;TSP:MSG:READ 21-21-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
    0;255;3;0;9;TSP:MSG:BC
    0;255;3;0;9;TSP:MSG:FPAR REQ (sender=21)
    0;255;3;0;9;TSP:CHKUPL:OK
    0;255;3;0;9;TSP:MSG:GWL OK
    0;255;3;0;9;TSP:MSG:SEND 0-0-21-21 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=ok:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=255,c=3,t=24,pt=1,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:PINGED (ID=21, hops=1)
    0;255;3;0;9;!TSP:MSG:SEND 0-0-21-21 s=255,c=3,t=25,pt=1,l=1,sg=0,ft=0,st=fail:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=255,c=0,t=17,pt=0,l=5,sg=0:2.0.0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=255,c=3,t=6,pt=1,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=255,c=3,t=11,pt=0,l=15,sg=0:Stairway Sensor
    0;255;3;0;9;!TSP:SANCHK:FAIL
    0;255;3;0;9;!TSM:FAILURE
    0;255;3;0;9;TSM:PDT
    0;255;3;0;9;TSM:INIT
    0;255;3;0;9;TSM:RADIO:OK
    0;255;3;0;9;TSM:GW MODE
    0;255;3;0;9;TSM:READY
    0;255;3;0;9;TSP:MSG:READ 21-21-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
    0;255;3;0;9;TSP:MSG:BC
    0;255;3;0;9;TSP:MSG:FPAR REQ (sender=21)
    0;255;3;0;9;TSP:CHKUPL:OK
    0;255;3;0;9;TSP:MSG:GWL OK
    0;255;3;0;9;TSP:MSG:SEND 0-0-21-21 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=ok:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=255,c=3,t=24,pt=1,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:PINGED (ID=21, hops=1)
    0;255;3;0;9;!TSP:MSG:SEND 0-0-21-21 s=255,c=3,t=25,pt=1,l=1,sg=0,ft=0,st=fail:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=255,c=0,t=17,pt=0,l=5,sg=0:2.0.0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=255,c=3,t=6,pt=1,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=255,c=3,t=11,pt=0,l=15,sg=0:Stairway Sensor
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=255,c=3,t=12,pt=0,l=3,sg=0:2.0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=0,t=1,pt=0,l=0,sg=0:
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=255,c=3,t=26,pt=1,l=1,sg=0:2
    0;255;3;0;9;!TSP:MSG:SEND 0-0-21-21 s=255,c=3,t=27,pt=1,l=1,sg=0,ft=0,st=fail:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:SANCHK:OK
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:SANCHK:OK
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:SANCHK:OK
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:SANCHK:OK
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:SANCHK:OK
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:SANCHK:OK
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:SANCHK:OK
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:SANCHK:OK
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:SANCHK:OK
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:SANCHK:OK
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:1
    0;255;3;0;9;TSP:SANCHK:OK
    0;255;3;0;9;TSP:MSG:READ 21-21-0 s=23,c=1,t=16,pt=0,l=1,sg=0:0
    

    That is gw log

    RCWL-0516
    Stairway Sensor 2.0
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    

    motion sensor log
    My problem is that I can not connect to MYScontroller at all it give error message "Connection refused"
    Now I can ping the address of the gw and I have "my-WiFi" application that show static address of the gw.
    So is there a problem with my gw or my sensor .
    the code for each of the 2 devices is straight from the examples in library 2.0.
    I am using IDE from Arduino 1.64 and board ver of IDE of 1.611.
    I have tried later board versions and also later IDE version neither helped.
    Anyone have any ideas. I would like to get this working to use on my HA
    Thanks

    General Discussion

  • No Inclusion
    mntlvrM mntlvr

    I am begining to believe it is my version of the ESP 8266 like I said mine is a ESP8266-12E devkit version 1 by nodemcu not just a plain jane version of ESP-8266-12 or 12E but I am have many other problems with mysensors right now , have installed IDE v1.84 and mysensor library 1.4.2 on another computer that has never has Arduino or mysensors on it.
    I constructed a 5100 gateway using that version of library and IDE and it works just fine. But I have also built a mysensors realy driver sensor with same equipment and am having nothing but nRF24l01 problems and Pro-Mini problems , it works for awhile like maybe an hour then I get check wires or continue to press reset on pro-mini many times in a row and all of the sudden the sensors comes back to life and then all of the sudden I get a version mismatch and then check wires again. I tried 15 different nRF modules and no difference. Now how can you get a version mismatch when GW and sensors are using same library and all programmed with same computer. I am about to give up on mysensors unless someone out here can help with this,because it makes no sense.

    P.S.
    I can take the very same ESP8266 dev-kit and make a server or client app out of it with no problem so there has to be a very large difference between a 12-E and a dev-kit but I do not see the difference other in the dev-kit already has buttons connected and resistors and built-in serial chip.
    Any more ideasThomas?

    Vera

  • HASS.IO not doing anything
    mntlvrM mntlvr

    By the way re-flashing the card did not help still can not login to web page.
    Are these versions only for PI-3 or will they work on PI-2?

    Home Assistant

  • HASS.IO not doing anything
    mntlvrM mntlvr

    Will try thanks

    Home Assistant
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • MySensors
  • OpenHardware.io
  • Categories
  • Recent
  • Tags
  • Popular