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.2.0 released

MySensors 2.2.0 released

Scheduled Pinned Locked Moved Announcements
33 Posts 16 Posters 12.2k Views 16 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.
  • gohanG gohan

    I think I reported this warning few months ago

    T Offline
    T Offline
    tekka
    Admin
    wrote on last edited by
    #11

    @gohan ok. Did you also open an issue on github back then?

    1 Reply Last reply
    0
    • gohanG Offline
      gohanG Offline
      gohan
      Mod
      wrote on last edited by
      #12

      I think @mfalkvidd did something at the time

      mfalkviddM 1 Reply Last reply
      0
      • gohanG gohan

        I think @mfalkvidd did something at the time

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

        This is the thread gohan is referring to: https://forum.mysensors.org/post/75635

        Looks like it was mentioned in https://forum.mysensors.org/topic/6526/raspberry-pi3-b-dragino-hat-rf95-rfm95-rf24_nop-error as well.

        1 Reply Last reply
        0
        • I Offline
          I Offline
          Ian Bishop
          wrote on last edited by
          #14

          Thanks for all the hard work!

          FYI, the version published to PlatformIO reports as 2.2.0-rc.2, doesn't look like there are any changes between the two revisions other than the version number.

          I have tried updating the library and uninstalling/reinstalling and can't get it to bring down 2.2.0.

          1 Reply Last reply
          0
          • A Offline
            A Offline
            Anticimex
            Contest Winner
            wrote on last edited by
            #15

            Users of security features (signing/encryption) need to do this to use these features from 2.2 onwards if upgrading from a previous official release.

            Do you feel secure today? No? Start requiring some signatures and feel better tomorrow ;)

            1 Reply Last reply
            1
            • F Offline
              F Offline
              flopp
              wrote on last edited by
              #16

              Thank you very much. I donated USD 10 as a small thank you for all your work. I hope more people do the same.

              Very nice text when you start a node, I have only tried 2.2 on my GW and it looks like some of my sending errors disappeared.

              This is what you see when you start a node

              __  __       ____
              |  \/  |_   _/ ___|  ___ _ __  ___  ___  _ __ ___
              | |\/| | | | \___ \ / _ \ `_ \/ __|/ _ \| `__/ __|
              | |  | | |_| |___| |  __/ | | \__ \  _  | |  \__ \
              |_|  |_|\__, |____/ \___|_| |_|___/\___/|_|  |___/
                     |___/                      2.2.0
              

              Why not add two | in the "o" then i will look like this

              
               __  __       ____
              |  \/  |_   _/ ___|  ___ _ __  ___  ___  _ __ ___
              | |\/| | | | \___ \ / _ \ `_ \/ __|/ _ \| `__/ __|
              | |  | | |_| |___| |  __/ | | \__ \ |_| | |  \__ \
              |_|  |_|\__, |____/ \___|_| |_|___/\___/|_|  |___/
                      |___/                      2.2.0
              
              
              1 Reply Last reply
              1
              • user1306U Offline
                user1306U Offline
                user1306
                wrote on last edited by user1306
                #17

                thank you very much for the hard work
                i'm very interested in #define MY_SIGNAL_REPORT_ENABLED
                So apologies for the stupid question but do i need to just enable this on the Node side or also the Gateway, or Config.h (because i saw it was commented out)?
                Do you know if this is supported by Domoticz?

                thanks in advance

                F 1 Reply Last reply
                0
                • user1306U user1306

                  thank you very much for the hard work
                  i'm very interested in #define MY_SIGNAL_REPORT_ENABLED
                  So apologies for the stupid question but do i need to just enable this on the Node side or also the Gateway, or Config.h (because i saw it was commented out)?
                  Do you know if this is supported by Domoticz?

                  thanks in advance

                  F Offline
                  F Offline
                  flopp
                  wrote on last edited by flopp
                  #18

                  @user1306
                  I couldn't find any Signal value in Domoticz
                  What I did was to send that information as a seperate Child
                  use variable transportGetSignalReport(SR_TX_RSSI) to get the value

                  send(RSSIMsg.set(transportGetSignalReport(SR_TX_RSSI)));
                  
                  zboblamontZ 1 Reply Last reply
                  0
                  • F flopp

                    @user1306
                    I couldn't find any Signal value in Domoticz
                    What I did was to send that information as a seperate Child
                    use variable transportGetSignalReport(SR_TX_RSSI) to get the value

                    send(RSSIMsg.set(transportGetSignalReport(SR_TX_RSSI)));
                    
                    zboblamontZ Offline
                    zboblamontZ Offline
                    zboblamont
                    wrote on last edited by
                    #19

                    @flopp There was always a RF signal level column under Devices in Domoticz, never did try to find out how it was used....

                    F 1 Reply Last reply
                    0
                    • zboblamontZ zboblamont

                      @flopp There was always a RF signal level column under Devices in Domoticz, never did try to find out how it was used....

                      F Offline
                      F Offline
                      flopp
                      wrote on last edited by flopp
                      #20

                      @zboblamont
                      It is still there, but I don't think DZ has implemented MYS RF signal, yet :)

                      1 Reply Last reply
                      0
                      • user1306U Offline
                        user1306U Offline
                        user1306
                        wrote on last edited by
                        #21

                        Thanks all for the help
                        @flopp i added the line like you mentioned.
                        i added it as S_SOUND, V_LEVEL seem to be working fine, thanks. Lets hope Domoticz will include it soon.

                        1 Reply Last reply
                        0
                        • user1306U Offline
                          user1306U Offline
                          user1306
                          wrote on last edited by
                          #22

                          i have another simple question regarding the RF24_PA level.
                          in the config file i see that its default to RF24_PA_MAX. does this mean that if i dont include anything in my sketch the node will default to MAX?
                          i read somewhere that this could cause the node to fail sometimes if there's not enough current going through, since most of my nodes are run on battery i would like to know if its necessary to modify this?

                          Thanks

                          F 1 Reply Last reply
                          0
                          • user1306U user1306

                            i have another simple question regarding the RF24_PA level.
                            in the config file i see that its default to RF24_PA_MAX. does this mean that if i dont include anything in my sketch the node will default to MAX?
                            i read somewhere that this could cause the node to fail sometimes if there's not enough current going through, since most of my nodes are run on battery i would like to know if its necessary to modify this?

                            Thanks

                            F Offline
                            F Offline
                            flopp
                            wrote on last edited by
                            #23

                            @user1306
                            Correct, if you don't define RF24_PA LEVEL in your sketch it will use default values from Config, which in your case seems to be MAX

                            1 Reply Last reply
                            0
                            • user1306U Offline
                              user1306U Offline
                              user1306
                              wrote on last edited by
                              #24

                              Really appreciate your help thanks @flopp
                              just wondering for normal nrf24l01+ not the PA LNA one, what level are you using? (no sure if mine are original since i bought them from Aliexpress i have my doubts).

                              F 1 Reply Last reply
                              1
                              • user1306U user1306

                                Really appreciate your help thanks @flopp
                                just wondering for normal nrf24l01+ not the PA LNA one, what level are you using? (no sure if mine are original since i bought them from Aliexpress i have my doubts).

                                F Offline
                                F Offline
                                flopp
                                wrote on last edited by
                                #25

                                @user1306
                                I am using LOW and HIGH. LOW should be enough. I was testing HIGH with some nodes but I dont know if that helped.

                                I also using nRF from AliE.

                                I think most of MYS users are using nRF from China, i don't know how to see if it is real or fake.

                                1 Reply Last reply
                                0
                                • ZwaZoZ Offline
                                  ZwaZoZ Offline
                                  ZwaZo
                                  wrote on last edited by
                                  #26

                                  Hello,

                                  I have a Strange problem appearing since I have started to upgrade my network from 2.1.1 to 2.2.0

                                  I am using a Domoticz v.3.8153 / Raspbian + a serial GW on NRF.
                                  Some of the devices are communicating to the GW through a repeater node equipped with a nrf24l01 PA LNA since they are just too far from the GW.

                                  Not all of the nodes are upgraded to 2.2.0, some are still running 2.1.1

                                  • the battery level reporting disappeared from all of the connected node (but one is still working : a senserblender micro with the original TempHum sketch)

                                  • The repeater node sometime stopped relaying the connection to the GW (on random time ?). Only thing I found is to restart this node)

                                  Any ideas ?

                                  Thanks a lot.

                                  Jef

                                  1 Reply Last reply
                                  0
                                  • maghacM Offline
                                    maghacM Offline
                                    maghac
                                    wrote on last edited by
                                    #27

                                    Hi,
                                    I've noticed that since the upgrade to 2.2.0 my nodes are now sending some new internal messages every now and then. I'm using a MQTT gateway and sometimes I see these messages coming through:

                                    mysensors-out/1/255/3/0/33 600000
                                    mysensors-out/1/255/3/0/32 500

                                    What are internal messages types 32 and 33? Can't find them in the list on https://www.mysensors.org/download/serial_api_20#internal

                                    A 1 Reply Last reply
                                    0
                                    • maghacM maghac

                                      Hi,
                                      I've noticed that since the upgrade to 2.2.0 my nodes are now sending some new internal messages every now and then. I'm using a MQTT gateway and sometimes I see these messages coming through:

                                      mysensors-out/1/255/3/0/33 600000
                                      mysensors-out/1/255/3/0/32 500

                                      What are internal messages types 32 and 33? Can't find them in the list on https://www.mysensors.org/download/serial_api_20#internal

                                      A Offline
                                      A Offline
                                      Anticimex
                                      Contest Winner
                                      wrote on last edited by
                                      #28

                                      @maghac Hi,
                                      documentation is best found here: https://www.mysensors.org/apidocs/
                                      It is always covering the latest release. Specifically, for message types: https://www.mysensors.org/apidocs/group__MyMessagegrp.html

                                      Do you feel secure today? No? Start requiring some signatures and feel better tomorrow ;)

                                      jjkJ 1 Reply Last reply
                                      3
                                      • C Offline
                                        C Offline
                                        clio75
                                        wrote on last edited by
                                        #29

                                        Hi,
                                        Thanx for 2.2.0
                                        But I have a new feature that I did not have before.
                                        I'm using VERA edge and my plugin reports that i don't have any connection to the Gateway.
                                        0_1518270404898_82497ebf-a332-4088-aa24-6bc7aa86fe40-image.png

                                        Please advice :)

                                        K 1 Reply Last reply
                                        0
                                        • C clio75

                                          Hi,
                                          Thanx for 2.2.0
                                          But I have a new feature that I did not have before.
                                          I'm using VERA edge and my plugin reports that i don't have any connection to the Gateway.
                                          0_1518270404898_82497ebf-a332-4088-aa24-6bc7aa86fe40-image.png

                                          Please advice :)

                                          K Offline
                                          K Offline
                                          korttoma
                                          Hero Member
                                          wrote on last edited by
                                          #30

                                          @clio75 please try setting the "CommFailure" Variable to 0 under "Advanced" for your MySensors Plugin Device in Vera to see it the message disappears.

                                          • Tomas
                                          C 1 Reply Last reply
                                          0

                                          Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                          Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                          With your input, this post could be even better 💗

                                          Register Login
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          25

                                          Online

                                          12.0k

                                          Users

                                          11.2k

                                          Topics

                                          113.4k

                                          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