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. Announcements
  3. MySensors 2.3.2 released

MySensors 2.3.2 released

Scheduled Pinned Locked Moved Announcements
28 Posts 14 Posters 3.6k Views 13 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.
  • alowhumA alowhum

    2.4 will come with a set of new features some of you have been waiting for... stay tuned

    Exciting! Next Christmas? :-)

    Practically: will code that uses ACK still work ok? I believe the answer was 'no' earlier, but I want to make sure.

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

    @alowhum the real ack still works the same way as before.

    The stuff that was called ack but wasn't ack and confused the hell out of everybody still works the same way as before, except that the naming is now "echo" to better reflect what it actually does (and has been doing all along). See https://github.com/mysensors/MySensors/pull/1292 for more information.

    1 Reply Last reply
    1
    • alowhumA Offline
      alowhumA Offline
      alowhum
      Plugin Developer
      wrote on last edited by
      #4

      Ok, but practically: I have a lot of Candle users whose version of MySensors will auto-update. But the code they will be uploading still has:

        if( message.isAck() ){
          Serial.println(F("-Got echo"));
          return;
        }
      

      So.. I should quickly change the code to also accomodate Echo. The question is: how?

      Will this work?

        if( message.isAck() || message.isEcho()){
          Serial.println(F("-Got echo"));
          return;
        }
      
      tekkaT 1 Reply Last reply
      0
      • alowhumA alowhum

        Ok, but practically: I have a lot of Candle users whose version of MySensors will auto-update. But the code they will be uploading still has:

          if( message.isAck() ){
            Serial.println(F("-Got echo"));
            return;
          }
        

        So.. I should quickly change the code to also accomodate Echo. The question is: how?

        Will this work?

          if( message.isAck() || message.isEcho()){
            Serial.println(F("-Got echo"));
            return;
          }
        
        tekkaT Offline
        tekkaT Offline
        tekka
        Admin
        wrote on last edited by
        #5

        @alowhum No need to substitute isAck() - it is marked deprecated but remains fully functional in the 2.x code. However, it is advisable to use isEcho() in the future to avoid confusions.

        alowhumA 1 Reply Last reply
        2
        • tekkaT tekka

          @alowhum No need to substitute isAck() - it is marked deprecated but remains fully functional in the 2.x code. However, it is advisable to use isEcho() in the future to avoid confusions.

          alowhumA Offline
          alowhumA Offline
          alowhum
          Plugin Developer
          wrote on last edited by alowhum
          #6

          Thanks @tekka, that's a load off my mind :-)

          Is there a way to use #define based on the version of the library?

          mfalkviddM 1 Reply Last reply
          0
          • alowhumA alowhum

            Thanks @tekka, that's a load off my mind :-)

            Is there a way to use #define based on the version of the library?

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

            @alowhum yes you can use the macros defined in https://github.com/mysensors/MySensors/blob/development/core/Version.h#L49

            1 Reply Last reply
            1
            • mfalkviddM Offline
              mfalkviddM Offline
              mfalkvidd
              Mod
              wrote on last edited by mfalkvidd
              #8

              or https://www.mysensors.org/apidocs/group__Versiongrp.html#details

              1 Reply Last reply
              0
              • franz-unixF Offline
                franz-unixF Offline
                franz-unix
                wrote on last edited by
                #9

                Hi guys, thanks for this release! :+1: Tested with a Pi 4 and a dual ethernet gateway (RFM69 + NRF24): it works!
                My /boot/config.txt is here.

                1 Reply Last reply
                1
                • D Offline
                  D Offline
                  djvl
                  wrote on last edited by
                  #10

                  Hi, thanks as well! Upgraded half of all my sensor nodes without any issues so far.

                  1 Reply Last reply
                  1
                  • pvojP Offline
                    pvojP Offline
                    pvoj
                    wrote on last edited by
                    #11

                    Thank you for the new version!
                    I run my network on 2.3.1. Should I update the serial gateway to 2.3.2 (or stay with 2.3.1) and leave some of my nodes on 2.3.1 and the new ones on 2.3.2?
                    Are they compatible?

                    mfalkviddM 1 Reply Last reply
                    0
                    • pvojP pvoj

                      Thank you for the new version!
                      I run my network on 2.3.1. Should I update the serial gateway to 2.3.2 (or stay with 2.3.1) and leave some of my nodes on 2.3.1 and the new ones on 2.3.2?
                      Are they compatible?

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

                      @pvoj they are compatible so you can do any way you like

                      M 1 Reply Last reply
                      1
                      • K Offline
                        K Offline
                        keithJ
                        wrote on last edited by
                        #13

                        hi, i upgraded to 2.3.2 and my serial gateway stopped working in openhab, so i had to revert back to 2.3.1.

                        I can only think this is because the mysensors binding also has to be upgraded?

                        1 Reply Last reply
                        0
                        • M Offline
                          M Offline
                          minousoso
                          Banned
                          wrote on last edited by
                          #14

                          The stuff that was called ack but wasn't ack and confused the hell out of everybody still works the same way as before, except that the naming is now "echo" to better reflect what it actually does (and has been doing all along). S

                          1 Reply Last reply
                          0
                          • mfalkviddM mfalkvidd

                            @pvoj they are compatible so you can do any way you like

                            M Offline
                            M Offline
                            minousoso
                            Banned
                            wrote on last edited by
                            #15

                            @mfalkvidd I can only think this is because the mysensors binding also has to be upgraded?

                            mfalkviddM 1 Reply Last reply
                            0
                            • M minousoso

                              @mfalkvidd I can only think this is because the mysensors binding also has to be upgraded?

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

                              @minousoso sorry, I don't know. I don't use Openhab.

                              1 Reply Last reply
                              0
                              • EmeE Offline
                                EmeE Offline
                                Eme
                                wrote on last edited by Eme
                                #17

                                Upgraded MS library and my my serial gateway sketch from 2.0.0 this evening - went well. Then noticed Nodes nolonger connect... Status LEDs no longer blick. Tried updating one node to 2.3.2 but it still won't conect. Is there a step by step guide? I have over 10 other nodes that Domotics can't find.

                                skywatchS 1 Reply Last reply
                                0
                                • EmeE Eme

                                  Upgraded MS library and my my serial gateway sketch from 2.0.0 this evening - went well. Then noticed Nodes nolonger connect... Status LEDs no longer blick. Tried updating one node to 2.3.2 but it still won't conect. Is there a step by step guide? I have over 10 other nodes that Domotics can't find.

                                  skywatchS Offline
                                  skywatchS Offline
                                  skywatch
                                  wrote on last edited by
                                  #18

                                  @Eme DId you erase the eeprom using the mysensors clear eeeprom program? If not then run that once and try again.

                                  EmeE 1 Reply Last reply
                                  0
                                  • skywatchS skywatch

                                    @Eme DId you erase the eeprom using the mysensors clear eeeprom program? If not then run that once and try again.

                                    EmeE Offline
                                    EmeE Offline
                                    Eme
                                    wrote on last edited by Eme
                                    #19

                                    @skywatch thanks for the update. Should l write this sketch to the Gateway alone, on each node or on both? Are there any step by step guides to gracefully migrate with? I'm very cautious, I've nodes in faraway places, wouldn't want to have to start all over again.

                                    EmeE 1 Reply Last reply
                                    0
                                    • EmeE Eme

                                      @skywatch thanks for the update. Should l write this sketch to the Gateway alone, on each node or on both? Are there any step by step guides to gracefully migrate with? I'm very cautious, I've nodes in faraway places, wouldn't want to have to start all over again.

                                      EmeE Offline
                                      EmeE Offline
                                      Eme
                                      wrote on last edited by
                                      #20

                                      @Eme cleared eeprom with the sketch and loaded the Gateway Serial. I now have an error for an #include <nrf.h> I've updated boards and libraries but still can't get past the error

                                      "NRFS Radio is not supported for this platform. " does this mean my Serial GW can't be upgraded since l use NRF24 radios? What am l fling wrong? All my nodes are down. Please help.

                                      skywatchS 1 Reply Last reply
                                      0
                                      • EmeE Eme

                                        @Eme cleared eeprom with the sketch and loaded the Gateway Serial. I now have an error for an #include <nrf.h> I've updated boards and libraries but still can't get past the error

                                        "NRFS Radio is not supported for this platform. " does this mean my Serial GW can't be upgraded since l use NRF24 radios? What am l fling wrong? All my nodes are down. Please help.

                                        skywatchS Offline
                                        skywatchS Offline
                                        skywatch
                                        wrote on last edited by
                                        #21

                                        @Eme Best to post the gateway sketch you are using. I guess it is the one from 2.3.2 library and not the old one from 2.0.0. Things changed.

                                        Also I would recommend to clear eeprom on all nodes and then reload the code modified where necessary for the new version if needed.

                                        It is best to have everything using the same version/protocol.

                                        EmeE 2 Replies Last reply
                                        0
                                        • skywatchS skywatch

                                          @Eme Best to post the gateway sketch you are using. I guess it is the one from 2.3.2 library and not the old one from 2.0.0. Things changed.

                                          Also I would recommend to clear eeprom on all nodes and then reload the code modified where necessary for the new version if needed.

                                          It is best to have everything using the same version/protocol.

                                          EmeE Offline
                                          EmeE Offline
                                          Eme
                                          wrote on last edited by
                                          #22

                                          thanks @skywatch l took your advice cleared eeprom on only one node, and cloned my SD card before building a Rasberry Gateway/Controller since I was experiencing too much stress with the Nano-RPi gateway.

                                          My Config was like:-

                                          ./configure --my-transport=rf24 --my-rf24-irq-pin=15 --my-gateway=serial --my-serial-is-pty --my-serial-port=/dev/ttyUSB020 --my-controller-ip-address=172.0.0.1 --my-leds-err-pin=12 --my-leds-rx-pin=16 --my-leds-tx-pin=18
                                          

                                          I changed the Hardware on Domotics to point to the new virtual ttyUSB020 port that appeared on Domotics. but still no connection.

                                          Rasberry Pi Gateway/Conmtroller Tail Log is asfollows

                                          /home/pi/MySensors$ tail -f /var/log/syslog
                                          Aug 18 22:25:53 IoTGateway mysgw: TSF:CKU:OK,FCTRL
                                          Aug 18 22:25:53 IoTGateway mysgw: TSF:MSG:GWL OK
                                          Aug 18 22:25:54 IoTGateway mysgw: !TSF:MSG:SEND,0-0-2-2,s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=NACK:0
                                          Aug 18 22:25:55 IoTGateway systemd[1]: Started Session c4 of user pi.
                                          Aug 18 22:25:55 IoTGateway mysgw: TSF:MSG:READ,2-2-255,s=255,c=3,t=7,pt=0,l=0,sg=0:
                                          Aug 18 22:25:55 IoTGateway mysgw: TSF:MSG:BC
                                          Aug 18 22:25:55 IoTGateway mysgw: TSF:MSG:FPAR REQ,ID=2
                                          Aug 18 22:25:55 IoTGateway mysgw: TSF:CKU:OK,FCTRL
                                          Aug 18 22:25:55 IoTGateway mysgw: TSF:MSG:GWL OK
                                          Aug 18 22:25:56 IoTGateway mysgw: !TSF:MSG:SEND,0-0-2-2,s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=NACK:0
                                          Aug 18 22:26:07 IoTGateway mysgw: TSF:MSG:READ,2-2-255,s=255,c=3,t=7,pt=0,l=0,sg=0:
                                          Aug 18 22:26:07 IoTGateway mysgw: TSF:MSG:BC
                                          Aug 18 22:26:07 IoTGateway mysgw: TSF:MSG:FPAR REQ,ID=2
                                          Aug 18 22:26:07 IoTGateway mysgw: TSF:PNG:SEND,TO=0
                                          Aug 18 22:26:07 IoTGateway mysgw: TSF:CKU:OK
                                          Aug 18 22:26:07 IoTGateway mysgw: TSF:MSG:GWL OK
                                          Aug 18 22:26:08 IoTGateway mysgw: !TSF:MSG:SEND,0-0-2-2,s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=NACK:0
                                          Aug 18 22:26:09 IoTGateway mysgw: TSF:MSG:READ,2-2-255,s=255,c=3,t=7,pt=0,l=0,sg=0:
                                          Aug 18 22:26:09 IoTGateway mysgw: TSF:MSG:BC
                                          Aug 18 22:26:09 IoTGateway mysgw: TSF:MSG:FPAR REQ,ID=2
                                          Aug 18 22:26:09 IoTGateway mysgw: TSF:CKU:OK,FCTRL
                                          Aug 18 22:26:09 IoTGateway mysgw: TSF:MSG:GWL OK
                                          Aug 18 22:26:10 IoTGateway mysgw: !TSF:MSG:SEND,0-0-2-2,s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=NACK:0
                                          Aug 18 22:26:12 IoTGateway mysgw: TSF:MSG:READ,2-2-255,s=255,c=3,t=7,pt=0,l=0,sg=0:
                                          Aug 18 22:26:12 IoTGateway mysgw: TSF:MSG:BC
                                          Aug 18 22:26:12 IoTGateway mysgw: TSF:MSG:FPAR REQ,ID=2
                                          Aug 18 22:26:12 IoTGateway mysgw: TSF:CKU:OK,FCTRL
                                          Aug 18 22:26:12 IoTGateway mysgw: TSF:MSG:GWL OK
                                          Aug 18 22:26:12 IoTGateway mysgw: !TSF:MSG:SEND,0-0-2-2,s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=NACK:0
                                          Aug 18 22:26:14 IoTGateway mysgw: TSF:MSG:READ,2-2-255,s=255,c=3,t=7,pt=0,l=0,sg=0:
                                          Aug 18 22:26:14 IoTGateway mysgw: TSF:MSG:BC
                                          Aug 18 22:26:14 IoTGateway mysgw: TSF:MSG:FPAR REQ,ID=2
                                          Aug 18 22:26:14 IoTGateway mysgw: TSF:CKU:OK,FCTRL
                                          Aug 18 22:26:14 IoTGateway mysgw: TSF:MSG:GWL OK
                                          Aug 18 22:26:15 IoTGateway mysgw: !TSF:MSG:SEND,0-0-2-2,s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=NACK:0
                                          Aug 18 22:26:26 IoTGateway mysgw: TSF:MSG:READ,2-2-255,s=255,c=3,t=7,pt=0,l=0,sg=0:
                                          Aug 18 22:26:26 IoTGateway mysgw: TSF:MSG:BC
                                          Aug 18 22:26:26 IoTGateway mysgw: TSF:MSG:FPAR REQ,ID=2
                                          Aug 18 22:26:26 IoTGateway mysgw: TSF:PNG:SEND,TO=0
                                          Aug 18 22:26:26 IoTGateway mysgw: TSF:CKU:OK
                                          Aug 18 22:26:26 IoTGateway mysgw: TSF:MSG:GWL OK
                                          Aug 18 22:26:26 IoTGateway mysgw: !TSF:MSG:SEND,0-0-2-2,s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=NACK:0
                                          Aug 18 22:26:28 IoTGateway mysgw: TSF:MSG:READ,2-2-255,s=255,c=3,t=7,pt=0,l=0,sg=0:
                                          Aug 18 22:26:28 IoTGateway mysgw: TSF:MSG:BC
                                          Aug 18 22:26:28 IoTGateway mysgw: TSF:MSG:FPAR REQ,ID=2
                                          Aug 18 22:26:28 IoTGateway mysgw: TSF:CKU:OK,FCTRL
                                          Aug 18 22:26:28 IoTGateway mysgw: TSF:MSG:GWL OK
                                          Aug 18 22:26:28 IoTGateway mysgw: !TSF:MSG:SEND,0-0-2-2,s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=NACK:0
                                          Aug 18 22:26:30 IoTGateway mysgw: TSF:MSG:READ,2-2-255,s=255,c=3,t=7,pt=0,l=0,sg=0:
                                          Aug 18 22:26:30 IoTGateway mysgw: TSF:MSG:BC
                                          Aug 18 22:26:30 IoTGateway mysgw: TSF:MSG:FPAR REQ,ID=2
                                          Aug 18 22:26:30 IoTGateway mysgw: TSF:CKU:OK,FCTRL
                                          Aug 18 22:26:30 IoTGateway mysgw: TSF:MSG:GWL OK
                                          Aug 18 22:26:30 IoTGateway mysgw: !TSF:MSG:SEND,0-0-2-2,s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=NACK:0
                                          Aug 18 22:26:32 IoTGateway mysgw: TSF:MSG:READ,2-2-255,s=255,c=3,t=7,pt=0,l=0,sg=0:
                                          Aug 18 22:26:32 IoTGateway mysgw: TSF:MSG:BC
                                          Aug 18 22:26:32 IoTGateway mysgw: TSF:MSG:FPAR REQ,ID=2
                                          Aug 18 22:26:32 IoTGateway mysgw: TSF:CKU:OK,FCTRL
                                          Aug 18 22:26:32 IoTGateway mysgw: TSF:MSG:GWL OK
                                          Aug 18 22:26:32 IoTGateway mysgw: !TSF:MSG:SEND,0-0-2-2,s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=NACK:0
                                          Aug 18 22:26:39 IoTGateway mysgw: TSF:MSG:READ,5-5-255,s=255,c=3,t=7,pt=0,l=0,sg=0:
                                          Aug 18 22:26:39 IoTGateway mysgw: TSF:MSG:BC
                                          Aug 18 22:26:39 IoTGateway mysgw: TSF:MSG:FPAR REQ,ID=5
                                          Aug 18 22:26:39 IoTGateway mysgw: TSF:CKU:OK,FCTRL
                                          Aug 18 22:26:39 IoTGateway mysgw: TSF:MSG:GWL OK
                                          Aug 18 22:26:39 IoTGateway mysgw: !TSF:MSG:SEND,0-0-5-5,s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=NACK:0
                                          Aug 18 22:26:41 IoTGateway mysgw: TSF:MSG:READ,5-5-255,s=255,c=3,t=7,pt=0,l=0,sg=0:
                                          Aug 18 22:26:41 IoTGateway mysgw: TSF:MSG:BC
                                          Aug 18 22:26:41 IoTGateway mysgw: TSF:MSG:FPAR REQ,ID=5
                                          Aug 18 22:26:41 IoTGateway mysgw: TSF:CKU:OK,FCTRL
                                          Aug 18 22:26:41 IoTGateway mysgw: TSF:MSG:GWL OK
                                          Aug 18 22:26:41 IoTGateway mysgw: !TSF:MSG:SEND,0-0-5-5,s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=NACK:0
                                          Aug 18 22:26:43 IoTGateway mysgw: TSF:MSG:READ,5-5-255,s=255,c=3,t=7,pt=0,l=0,sg=0:
                                          Aug 18 22:26:43 IoTGateway mysgw: TSF:MSG:BC
                                          Aug 18 22:26:43 IoTGateway mysgw: TSF:MSG:FPAR REQ,ID=5
                                          Aug 18 22:26:43 IoTGateway mysgw: TSF:CKU:OK,FCTRL
                                          Aug 18 22:26:43 IoTGateway mysgw: TSF:MSG:GWL OK
                                          Aug 18 22:26:43 IoTGateway mysgw: !TSF:MSG:SEND,0-0-5-5,s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=NACK:0
                                          Aug 18 22:26:44 IoTGateway mysgw: TSF:MSG:READ,2-2-255,s=255,c=3,t=7,pt=0,l=0,sg=0:
                                          Aug 18 22:26:44 IoTGateway mysgw: TSF:MSG:BC
                                          Aug 18 22:26:44 IoTGateway mysgw: TSF:MSG:FPAR REQ,ID=2
                                          Aug 18 22:26:44 IoTGateway mysgw: TSF:CKU:OK,FCTRL
                                          Aug 18 22:26:44 IoTGateway mysgw: TSF:MSG:GWL OK
                                          Aug 18 22:26:44 IoTGateway mysgw: !TSF:MSG:SEND,0-0-2-2,s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=NACK:0
                                          Aug 18 22:26:45 IoTGateway mysgw: TSF:MSG:READ,5-5-255,s=255,c=3,t=7,pt=0,l=0,sg=0:
                                          Aug 18 22:26:45 IoTGateway mysgw: TSF:MSG:BC
                                          Aug 18 22:26:45 IoTGateway mysgw: TSF:MSG:FPAR REQ,ID=5
                                          Aug 18 22:26:45 IoTGateway mysgw: TSF:CKU:OK,FCTRL
                                          Aug 18 22:26:45 IoTGateway mysgw: TSF:MSG:GWL OK
                                          Aug 18 22:26:45 IoTGateway mysgw: !TSF:MSG:SEND,0-0-5-5,s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=NACK:0
                                          Aug 18 22:26:46 IoTGateway mysgw: TSF:MSG:READ,2-2-255,s=255,c=3,t=7,pt=0,l=0,sg=0:
                                          Aug 18 22:26:46 IoTGateway mysgw: TSF:MSG:BC
                                          Aug 18 22:26:46 IoTGateway mysgw: TSF:MSG:FPAR REQ,ID=2
                                          Aug 18 22:26:46 IoTGateway mysgw: TSF:CKU:OK,FCTRL
                                          Aug 18 22:26:46 IoTGateway mysgw: TSF:MSG:GWL OK
                                          Aug 18 22:26:46 IoTGateway mysgw: !TSF:MSG:SEND,0-0-2-2,s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=NACK:0
                                          Aug 18 22:26:48 IoTGateway mysgw: TSF:MSG:READ,2-2-255,s=255,c=3,t=7,pt=0,l=0,sg=0:
                                          Aug 18 22:26:48 IoTGateway mysgw: TSF:MSG:BC
                                          Aug 18 22:26:48 IoTGateway mysgw: TSF:MSG:FPAR REQ,ID=2
                                          Aug 18 22:26:48 IoTGateway mysgw: TSF:CKU:OK,FCTRL
                                          Aug 18 22:26:48 IoTGateway mysgw: TSF:MSG:GWL OK
                                          Aug 18 22:26:48 IoTGateway mysgw: !TSF:MSG:SEND,0-0-2-2,s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=NACK:0
                                          Aug 18 22:26:50 IoTGateway mysgw: TSF:MSG:READ,2-2-255,s=255,c=3,t=7,pt=0,l=0,sg=0:
                                          Aug 18 22:26:50 IoTGateway mysgw: TSF:MSG:BC
                                          Aug 18 22:26:50 IoTGateway mysgw: TSF:MSG:FPAR REQ,ID=2
                                          Aug 18 22:26:50 IoTGateway mysgw: TSF:CKU:OK,FCTRL
                                          Aug 18 22:26:50 IoTGateway mysgw: TSF:MSG:GWL OK
                                          Aug 18 22:26:50 IoTGateway mysgw: !TSF:MSG:SEND,0-0-2-2,s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=NACK:0
                                          

                                          My Domoticz Log :-

                                          2020-08-18 22:21:53.545 Sunrise: 06:22:00 SunSet: 18:47:00
                                          2020-08-18 22:21:53.545 Day length: 12:25:00 Sun at south: 12:34:00
                                          2020-08-18 22:21:53.545 Civil twilight start: 06:00:00 Civil twilight end: 19:08:00
                                          2020-08-18 22:21:53.545 Nautical twilight start: 05:35:00 Nautical twilight end: 19:34:00
                                          2020-08-18 22:21:53.545 Astronomical twilight start: 05:09:00 Astronomical twilight end: 19:59:00
                                          2020-08-18 22:21:53.864 Active notification Subsystems: kodi (1/13)
                                          2020-08-18 22:21:53.969 Starting shared server on: :::6144
                                          2020-08-18 22:21:53.410 Status: Domoticz V2020.1 (c)2012-2020 GizMoCuz
                                          2020-08-18 22:21:53.412 Status: Build Hash: 63fa969e4, Date: 2020-03-22 15:16:16
                                          2020-08-18 22:21:53.413 Status: Startup Path: /home/pi/domoticz/
                                          2020-08-18 22:21:53.842 Status: PluginSystem: Started, Python version '3.7.3'.
                                          2020-08-18 22:21:53.896 Status: WebServer(HTTP) started on address: :: with port 8080
                                          2020-08-18 22:21:53.912 Status: WebServer(SSL) started on address: :: with port 443
                                          2020-08-18 22:21:53.915 Status: Camera: settings (re)loaded
                                          2020-08-18 22:21:53.969 Status: TCPServer: shared server started...
                                          2020-08-18 22:21:53.970 Status: RxQueue: queue worker started...
                                          2020-08-18 22:21:55.978 Status: MySensors: Worker started...
                                          2020-08-18 22:21:55.979 Status: Hardware Monitor: Started
                                          2020-08-18 22:21:56.979 MySensors: Gateway Ready...
                                          2020-08-18 22:21:56.004 Status: NotificationSystem: thread started...
                                          2020-08-18 22:21:56.005 Status: EventSystem: reset all events...
                                          2020-08-18 22:21:56.010 Status: EventSystem: reset all device statuses...
                                          2020-08-18 22:21:56.051 Status: PluginSystem: Entering work loop.
                                          2020-08-18 22:21:56.159 Status: Python EventSystem: Initalizing event module.
                                          2020-08-18 22:21:56.160 Status: EventSystem: Started
                                          2020-08-18 22:21:56.160 Status: EventSystem: Queue thread started...
                                          2020-08-18 22:21:56.979 Status: MySensors: Using serial port: /dev/ttyUSB020
                                          2020-08-18 22:21:57.055 MySensors: Gateway Version: 2.3.2
                                          2020-08-18 22:21:57.004 Status: MQTT: Connecting to 192.168.8.100:1883
                                          2020-08-18 22:21:57.004 Error: MQTT: Failed to start, return code: 14 (Check IP/Port)
                                          2020-08-18 22:22:49.016 Status: MQTT: Connecting to 192.168.8.100:1883
                                          2020-08-18 22:22:49.218 Status: MQTT: connected to: 192.168.8.100:1883
                                          2020-08-18 22:22:49.419 Status: MQTT: Subscribed
                                          2020-08-18 22:24:00.705 Status: New sensors allowed for 5 minutes...
                                          

                                          MySensor Node Serial Printout:

                                          16 MCO:BGN:INIT REPEATER,CP=RNNRA---,FQ=16,REL=255,VER=2.3.2
                                          27 TSM:INIT
                                          28 TSF:WUR:MS=0
                                          34 TSM:INIT:TSP OK
                                          36 TSM:INIT:STATID=5
                                          38 TSF:SID:OK,ID=5
                                          40 TSM:FPAR
                                          45 ?TSF:MSG:SEND,5-5-255-255,s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=OK:
                                          2052 !TSM:FPAR:NO REPLY
                                          2054 TSM:FPAR
                                          2058 ?TSF:MSG:SEND,5-5-255-255,s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=OK:
                                          4065 !TSM:FPAR:NO REPLY
                                          4067 TSM:FPAR
                                          4071 ?TSF:MSG:SEND,5-5-255-255,s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=OK:
                                          6078 !TSM:FPAR:NO REPLY
                                          6080 TSM:FPAR
                                          6084 ?TSF:MSG:SEND,5-5-255-255,s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=OK:
                                          8091 !TSM:FPAR:FAIL
                                          8092 TSM:FAIL:CNT=1
                                          8094 TSM:FAIL:DIS
                                          8096 TSF:TDI:TSL
                                          18098 TSM:FAIL:RE-INIT
                                          18100 TSM:INIT
                                          18106 TSM:INIT:TSP OK
                                          18108 TSM:INIT:STATID=5
                                          18111 TSF:SID:OK,ID=5
                                          18113 TSM:FPAR
                                          18117 ?TSF:MSG:SEND,5-5-255-255,s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=OK:
                                          20124 !TSM:FPAR:NO REPLY
                                          20126 TSM:FPAR
                                          20130 ?TSF:MSG:SEND,5-5-255-255,s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=OK:
                                          22138 !TSM:FPAR:NO REPLY
                                          22140 TSM:FPAR
                                          22145 ?TSF:MSG:SEND,5-5-255-255,s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=OK:
                                          24153 !TSM:FPAR:NO REPLY
                                          24155 TSM:FPAR
                                          24159 ?TSF:MSG:SEND,5-5-255-255,s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=OK:
                                          26167 !TSM:FPAR:FAIL
                                          26168 TSM:FAIL:CNT=2
                                          26170 TSM:FAIL:DIS
                                          26172 TSF:TDI:TSL
                                          
                                          

                                          Still no luck. The node still wont present to the new gateway.

                                          What am I doing wrong? All my devices are still down - 4 days on.

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


                                          17

                                          Online

                                          11.7k

                                          Users

                                          11.2k

                                          Topics

                                          113.1k

                                          Posts


                                          Copyright 2025 TBD   |   Forum Guidelines   |   Privacy Policy   |   Terms of Service
                                          • Login

                                          • Don't have an account? Register

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