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. Converting a sketch from 1.5.x to 2.0.x

Converting a sketch from 1.5.x to 2.0.x

Scheduled Pinned Locked Moved Announcements
52 Posts 21 Posters 31.9k Views 26 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.
  • chrlyraC Offline
    chrlyraC Offline
    chrlyra
    wrote on last edited by
    #2

    Hi,

    How does this work when your gateway also have local sensors? I tried to merge the Humidity sensor (DHT11) with the SerialGateway but it seems that presentation is not called after uploading the sketch. This is what I have:

    void setup() { 
      // Setup locally attached sensors
      dht.setup(HUMIDITY_SENSOR_DIGITAL_PIN); 
      metric = getConfig().isMetric;
    }
    
    void presentation() {
     // Present locally attached sensors 
     sendSketchInfo("My Gateway", "1.0");
     present(CHILD_ID_HUM, S_HUM);
     present(CHILD_ID_TEMP, S_TEMP);
    }
    

    And the output is:

    0;255;3;0;14;Gateway startup complete.
    0;255;3;0;9;No registration required
    0;255;3;0;9;Init complete, id=0, parent=0, distance=0, registration=1
    0;1;1;0;0;28.0
    0;0;1;0;1;59.0 
    

    If I put the "present" lines at the setup() then I got the expected lines:

    0;255;3;0;14;Gateway startup complete.
    0;255;3;0;11;My Gateway
    0;255;3;0;12;1.0
    0;0;0;0;7;
    0;1;0;0;6;
    0;255;3;0;9;No registration required
    0;255;3;0;9;Init complete, id=0, parent=0, distance=0, registration=1
    0;1;1;0;0;28.0
    0;0;1;0;1;59.0 
    

    Is this expected or I missed something? I'm trying to use this gateway with homeassistant and it seems that homeassistant expect those presentation lines. There's a issue with the use of node "0" id too, but i should leave it to another topic.

    1 Reply Last reply
    0
    • rollercontainerR Offline
      rollercontainerR Offline
      rollercontainer
      wrote on last edited by rollercontainer
      #3

      Maybe related to this problem?
      https://github.com/mysensors/MySensors/issues/449

      My gateway does the same. No presentation, but sending data.

      chrlyraC 1 Reply Last reply
      0
      • hugowsH Offline
        hugowsH Offline
        hugows
        wrote on last edited by hugows
        #4

        The API looks very clean and simple, I look forward to use it more.
        Does Arduino/MySensors uses C++ features (namespaces?) to prevent name collision? In typical C projects I've seen the functions all beginning with some prefix (mysensors_).

        1 Reply Last reply
        0
        • rollercontainerR rollercontainer

          Maybe related to this problem?
          https://github.com/mysensors/MySensors/issues/449

          My gateway does the same. No presentation, but sending data.

          chrlyraC Offline
          chrlyraC Offline
          chrlyra
          wrote on last edited by
          #5

          @rollercontainer Where should the "if (presentation).." be? At the setup()?

          YveauxY 1 Reply Last reply
          0
          • chrlyraC chrlyra

            @rollercontainer Where should the "if (presentation).." be? At the setup()?

            YveauxY Offline
            YveauxY Offline
            Yveaux
            Mod
            wrote on last edited by
            #6

            @chrlyra there is no such thing as if(presentation)...
            The presentation function implementation can be anywhere in your sketch.

            http://yveaux.blogspot.nl

            chrlyraC 1 Reply Last reply
            0
            • YveauxY Yveaux

              @chrlyra there is no such thing as if(presentation)...
              The presentation function implementation can be anywhere in your sketch.

              chrlyraC Offline
              chrlyraC Offline
              chrlyra
              wrote on last edited by
              #7

              @Yveaux rollercontainer pointed to this issue: https://github.com/mysensors/MySensors/issues/449, where hek asked him to add two lines of code, the first one being "if (presentation)".

              YveauxY 1 Reply Last reply
              0
              • chrlyraC chrlyra

                @Yveaux rollercontainer pointed to this issue: https://github.com/mysensors/MySensors/issues/449, where hek asked him to add two lines of code, the first one being "if (presentation)".

                YveauxY Offline
                YveauxY Offline
                Yveaux
                Mod
                wrote on last edited by
                #8

                @chrlyra That's what happens if you deviate from the topic... Anyway, thanks for the hint!

                http://yveaux.blogspot.nl

                1 Reply Last reply
                0
                • R Offline
                  R Offline
                  Rolo6442u
                  wrote on last edited by
                  #9

                  Great work ! This version looks a lot cleaner and the support for the RFM69 is more integrated. Thanks for that. One thing I'm missing and that's the specification of the encryption key for the RFM69. This was done in version 1.5.x by a user defined 16 bytes string. Now i see only a #define MY_RFM69_ENABLE_ENCRYPTION.
                  How and where is the key specified ? How does this make my setup unique ?

                  Thanks.

                  AnticimexA 1 Reply Last reply
                  0
                  • scalzS Offline
                    scalzS Offline
                    scalz
                    Hardware Contributor
                    wrote on last edited by
                    #10

                    @Rolo6442u
                    If I remember well, it is handled by SecurityPersonalizer.ino It is sketch for signing options, and i think you can set/generate your rf aes key there. It store it in eeprom. Then you upload the new sketch with encryption define enabled. For me it's ok, as i use signing which needs to use the personalizer.
                    I think this works like this, not sure as i have not enabled encryption yet. Am I right @Anticimex ?

                    1 Reply Last reply
                    0
                    • R Rolo6442u

                      Great work ! This version looks a lot cleaner and the support for the RFM69 is more integrated. Thanks for that. One thing I'm missing and that's the specification of the encryption key for the RFM69. This was done in version 1.5.x by a user defined 16 bytes string. Now i see only a #define MY_RFM69_ENABLE_ENCRYPTION.
                      How and where is the key specified ? How does this make my setup unique ?

                      Thanks.

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

                      @Rolo6442u
                      @scalz is correct. Details are in the doxygen documentation for usage. Link is on the GitHub readme. Look under the signing module there.

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

                      R 1 Reply Last reply
                      1
                      • AnticimexA Anticimex

                        @Rolo6442u
                        @scalz is correct. Details are in the doxygen documentation for usage. Link is on the GitHub readme. Look under the signing module there.

                        R Offline
                        R Offline
                        Rolo6442u
                        wrote on last edited by
                        #12

                        @Anticimex
                        @scalz
                        Thanks, I got it working. By setting it to "soft" this sketch writes all key's to eeprom and will not look for a hardware siging module. The RFM69 uses the EAS key for encryption. I defined my own key again in the sketch.
                        Nice solution !

                        AnticimexA 1 Reply Last reply
                        1
                        • R Rolo6442u

                          @Anticimex
                          @scalz
                          Thanks, I got it working. By setting it to "soft" this sketch writes all key's to eeprom and will not look for a hardware siging module. The RFM69 uses the EAS key for encryption. I defined my own key again in the sketch.
                          Nice solution !

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

                          @Rolo6442u precisely. Glad to hear that the docs are helping :) and thanks!

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

                          1 Reply Last reply
                          0
                          • pascalgauthierP Offline
                            pascalgauthierP Offline
                            pascalgauthier
                            wrote on last edited by
                            #14

                            How can i call the process() inside a while in the loop() ?

                            Thanks

                            nielsokkerN 1 Reply Last reply
                            0
                            • pascalgauthierP pascalgauthier

                              How can i call the process() inside a while in the loop() ?

                              Thanks

                              nielsokkerN Offline
                              nielsokkerN Offline
                              nielsokker
                              wrote on last edited by
                              #15

                              @pascalgauthier

                              I think the function "wait()" might be useful. It is like a sleep, but now it calls "process()"

                              pascalgauthierP 1 Reply Last reply
                              0
                              • nielsokkerN nielsokker

                                @pascalgauthier

                                I think the function "wait()" might be useful. It is like a sleep, but now it calls "process()"

                                pascalgauthierP Offline
                                pascalgauthierP Offline
                                pascalgauthier
                                wrote on last edited by
                                #16

                                @nielsokker said:

                                @pascalgauthier

                                I think the function "wait()" might be useful. It is like a sleep, but now it calls "process()"

                                I was thinking of using it with wait(0) but I was wondering if there was any way to call the process directly.

                                nielsokkerN 1 Reply Last reply
                                0
                                • pascalgauthierP pascalgauthier

                                  @nielsokker said:

                                  @pascalgauthier

                                  I think the function "wait()" might be useful. It is like a sleep, but now it calls "process()"

                                  I was thinking of using it with wait(0) but I was wondering if there was any way to call the process directly.

                                  nielsokkerN Offline
                                  nielsokkerN Offline
                                  nielsokker
                                  wrote on last edited by
                                  #17

                                  @pascalgauthier

                                  I'm not sure. I think the developers will know.

                                  1 Reply Last reply
                                  0
                                  • scalzS Offline
                                    scalzS Offline
                                    scalz
                                    Hardware Contributor
                                    wrote on last edited by
                                    #18

                                    @pascalgauthier why do you need to call process ? It's already done internally by the lib. Or is it for inside some longtime loop? you still can use process but now it's _process()
                                    Wait is not the same as sleep.
                                    Wait : wait for a time and call _process
                                    sleep: does not call _process. it sleeps. for a time if set

                                    pascalgauthierP 1 Reply Last reply
                                    0
                                    • scalzS scalz

                                      @pascalgauthier why do you need to call process ? It's already done internally by the lib. Or is it for inside some longtime loop? you still can use process but now it's _process()
                                      Wait is not the same as sleep.
                                      Wait : wait for a time and call _process
                                      sleep: does not call _process. it sleeps. for a time if set

                                      pascalgauthierP Offline
                                      pascalgauthierP Offline
                                      pascalgauthier
                                      wrote on last edited by
                                      #19

                                      @scalz
                                      Because i have while() that increment motion detected in a 30sec timeframe. And i would like to be sure that i'm not missing any cmd from the gateway. Do i need to define any additional library to use the _process() ?

                                      AWIA 1 Reply Last reply
                                      0
                                      • pascalgauthierP pascalgauthier

                                        @scalz
                                        Because i have while() that increment motion detected in a 30sec timeframe. And i would like to be sure that i'm not missing any cmd from the gateway. Do i need to define any additional library to use the _process() ?

                                        AWIA Offline
                                        AWIA Offline
                                        AWI
                                        Hero Member
                                        wrote on last edited by
                                        #20

                                        @pascalgauthier I would recommend making your while loop non-blocking i.s.o. hacking into a MySensors function.

                                        1 Reply Last reply
                                        1
                                        • scalzS Offline
                                          scalzS Offline
                                          scalz
                                          Hardware Contributor
                                          wrote on last edited by
                                          #21

                                          @pascalgauthier
                                          yes it's better non blocking. for non blocking it's better to use "if" like. for beginning, I advise you to look at "blink without delay" concept. then learning a bit how a state machine works etc...could be useful to you. but it's a bit more advanced, or not..

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


                                          13

                                          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