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 8.5k 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.
  • AnticimexA Offline
    AnticimexA 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

                            AnticimexA 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

                              AnticimexA Offline
                              AnticimexA 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
                              • clio75C Offline
                                clio75C 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 :)

                                korttomaK 1 Reply Last reply
                                0
                                • clio75C 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 :)

                                  korttomaK Offline
                                  korttomaK 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
                                  clio75C 1 Reply Last reply
                                  0
                                  • korttomaK korttoma

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

                                    clio75C Offline
                                    clio75C Offline
                                    clio75
                                    wrote on last edited by
                                    #31

                                    @korttoma
                                    Hi,
                                    I switch "CommFailure" to 0 And reloaded engine. and error measure disappear.

                                    But is this a new feature that you have implemented ?

                                    1 Reply Last reply
                                    0
                                    • AnticimexA Anticimex

                                      @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

                                      jjkJ Offline
                                      jjkJ Offline
                                      jjk
                                      wrote on last edited by
                                      #32

                                      @anticimex said in MySensors 2.2.0 released:

                                      @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

                                      Is there a way to disable these messages?

                                      AnticimexA 1 Reply Last reply
                                      0
                                      • jjkJ jjk

                                        @anticimex said in MySensors 2.2.0 released:

                                        @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

                                        Is there a way to disable these messages?

                                        AnticimexA Offline
                                        AnticimexA Offline
                                        Anticimex
                                        Contest Winner
                                        wrote on last edited by
                                        #33

                                        @jjk yes, by avoiding to use smartSleep: https://www.mysensors.org/apidocs/group__MySensorsCoregrp.html#gab5f84c4227e3478af4b6600d5e8d8b15

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

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


                                        10

                                        Online

                                        11.7k

                                        Users

                                        11.2k

                                        Topics

                                        113.0k

                                        Posts


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

                                        • Don't have an account? Register

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