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. 💬 Building a Raspberry Pi Gateway

💬 Building a Raspberry Pi Gateway

Scheduled Pinned Locked Moved Announcements
1.1k Posts 173 Posters 423.0k Views 131 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 Anticimex

    @masmat it needs to be defined prior to the inclusion of mysensors.h. That should be it. (on the arduino node that is).

    MasMatM Offline
    MasMatM Offline
    MasMat
    wrote on last edited by
    #895

    @anticimex I've built a new node, DHT11 that sends temp&hum data. I reconfigured Rpi with this:

    sudo ./configure --my-transport=nrf24 --my-rf24-irq-pin=15 --my-signing-debug --my-signing=password --my-signing-password=XXXXXX --my-gateway=mqtt --my-controller-ip-address=127.0.0.1 --my-mqtt-user=YYYY --my-mqtt-password=ZZZZZ --my-mqtt-publish-topic-prefix=mysensors-out --my-mqtt-subscribe-topic-prefix=mysensors-in --my-mqtt-client-id=mygateway1 --my-leds-err-pin=12 --my-leds-rx-pin=16 --my-leds-tx-pin=18
    

    This is what I get in gw syslog:

    Apr  2 22:53:11 DietPi mysgw: Starting gateway...
    Apr  2 22:53:11 DietPi mysgw: Protocol version - 2.2.0
    Apr  2 22:53:11 DietPi mysgw: MCO:BGN:INIT GW,CP=RNNGLSQX,VER=2.2.0
    Apr  2 22:53:11 DietPi mysgw: !SGN:BND:PWD<8
    Apr  2 22:53:11 DietPi mysgw: !SGN:INI:BND FAIL
    Apr  2 22:53:11 DietPi mysgw: TSF:LRT:OK
    Apr  2 22:53:11 DietPi mysgw: TSM:INIT
    Apr  2 22:53:11 DietPi mysgw: TSF:WUR:MS=0
    Apr  2 22:53:11 DietPi mysgw: TSM:INIT:TSP OK
    Apr  2 22:53:11 DietPi mysgw: TSM:INIT:GW MODE
    Apr  2 22:53:11 DietPi mysgw: TSM:READY:ID=0,PAR=0,DIS=0
    Apr  2 22:53:11 DietPi mysgw: MCO:REG:NOT NEEDED
    Apr  2 22:53:11 DietPi mysgw: MCO:BGN:STP
    Apr  2 22:53:11 DietPi mysgw: MCO:BGN:INIT OK,TSP=1
    Apr  2 22:53:11 DietPi mysgw: GWT:RMQ:MQTT RECONNECT
    Apr  2 22:53:11 DietPi mysgw: connected to 127.0.0.1
    Apr  2 22:53:11 DietPi mysgw: GWT:RMQ:MQTT CONNECTED
    Apr  2 22:53:11 DietPi mysgw: GWT:TPS:TOPIC=mysensors-out/0/255/0/0/18,MSG SENT
    Apr  2 22:53:23 DietPi mysgw: TSF:MSG:READ,99-99-255,s=255,c=3,t=7,pt=0,l=0,sg=0:
    Apr  2 22:53:23 DietPi mysgw: TSF:MSG:BC
    Apr  2 22:53:23 DietPi mysgw: TSF:MSG:FPAR REQ,ID=99
    Apr  2 22:53:23 DietPi mysgw: TSF:PNG:SEND,TO=0
    Apr  2 22:53:23 DietPi mysgw: TSF:CKU:OK
    Apr  2 22:53:23 DietPi mysgw: TSF:MSG:GWL OK
    Apr  2 22:53:23 DietPi mysgw: SGN:SKP:MSG CMD=3,TYPE=8
    Apr  2 22:53:23 DietPi mysgw: TSF:MSG:SEND,0-0-99-99,s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=OK:0
    Apr  2 22:53:25 DietPi mysgw: TSF:MSG:READ,99-99-0,s=255,c=3,t=24,pt=1,l=1,sg=0:1
    Apr  2 22:53:25 DietPi mysgw: SGN:SKP:MSG CMD=3,TYPE=24
    Apr  2 22:53:25 DietPi mysgw: TSF:MSG:PINGED,ID=99,HP=1
    Apr  2 22:53:25 DietPi mysgw: SGN:SKP:MSG CMD=3,TYPE=25
    Apr  2 22:53:25 DietPi mysgw: TSF:MSG:SEND,0-0-99-99,s=255,c=3,t=25,pt=1,l=1,sg=0,ft=0,st=OK:1
    Apr  2 22:54:18 DietPi mysgw: TSF:MSG:READ,99-99-0,s=1,c=3,t=16,pt=0,l=0,sg=0:
    Apr  2 22:54:18 DietPi mysgw: SGN:SKP:MSG CMD=3,TYPE=16
    Apr  2 22:54:18 DietPi mysgw: !SGN:NCE:GEN
    Apr  2 22:54:23 DietPi mysgw: TSF:MSG:READ,99-99-0,s=0,c=3,t=16,pt=0,l=0,sg=0:
    Apr  2 22:54:23 DietPi mysgw: SGN:SKP:MSG CMD=3,TYPE=16
    Apr  2 22:54:23 DietPi mysgw: !SGN:NCE:GEN
    

    This is kicking my butt... I cant understand that last part about the nonce :(
    I will add the code from the node as soon as possible.

    mfalkviddM AnticimexA 2 Replies Last reply
    1
    • MasMatM MasMat

      @anticimex I've built a new node, DHT11 that sends temp&hum data. I reconfigured Rpi with this:

      sudo ./configure --my-transport=nrf24 --my-rf24-irq-pin=15 --my-signing-debug --my-signing=password --my-signing-password=XXXXXX --my-gateway=mqtt --my-controller-ip-address=127.0.0.1 --my-mqtt-user=YYYY --my-mqtt-password=ZZZZZ --my-mqtt-publish-topic-prefix=mysensors-out --my-mqtt-subscribe-topic-prefix=mysensors-in --my-mqtt-client-id=mygateway1 --my-leds-err-pin=12 --my-leds-rx-pin=16 --my-leds-tx-pin=18
      

      This is what I get in gw syslog:

      Apr  2 22:53:11 DietPi mysgw: Starting gateway...
      Apr  2 22:53:11 DietPi mysgw: Protocol version - 2.2.0
      Apr  2 22:53:11 DietPi mysgw: MCO:BGN:INIT GW,CP=RNNGLSQX,VER=2.2.0
      Apr  2 22:53:11 DietPi mysgw: !SGN:BND:PWD<8
      Apr  2 22:53:11 DietPi mysgw: !SGN:INI:BND FAIL
      Apr  2 22:53:11 DietPi mysgw: TSF:LRT:OK
      Apr  2 22:53:11 DietPi mysgw: TSM:INIT
      Apr  2 22:53:11 DietPi mysgw: TSF:WUR:MS=0
      Apr  2 22:53:11 DietPi mysgw: TSM:INIT:TSP OK
      Apr  2 22:53:11 DietPi mysgw: TSM:INIT:GW MODE
      Apr  2 22:53:11 DietPi mysgw: TSM:READY:ID=0,PAR=0,DIS=0
      Apr  2 22:53:11 DietPi mysgw: MCO:REG:NOT NEEDED
      Apr  2 22:53:11 DietPi mysgw: MCO:BGN:STP
      Apr  2 22:53:11 DietPi mysgw: MCO:BGN:INIT OK,TSP=1
      Apr  2 22:53:11 DietPi mysgw: GWT:RMQ:MQTT RECONNECT
      Apr  2 22:53:11 DietPi mysgw: connected to 127.0.0.1
      Apr  2 22:53:11 DietPi mysgw: GWT:RMQ:MQTT CONNECTED
      Apr  2 22:53:11 DietPi mysgw: GWT:TPS:TOPIC=mysensors-out/0/255/0/0/18,MSG SENT
      Apr  2 22:53:23 DietPi mysgw: TSF:MSG:READ,99-99-255,s=255,c=3,t=7,pt=0,l=0,sg=0:
      Apr  2 22:53:23 DietPi mysgw: TSF:MSG:BC
      Apr  2 22:53:23 DietPi mysgw: TSF:MSG:FPAR REQ,ID=99
      Apr  2 22:53:23 DietPi mysgw: TSF:PNG:SEND,TO=0
      Apr  2 22:53:23 DietPi mysgw: TSF:CKU:OK
      Apr  2 22:53:23 DietPi mysgw: TSF:MSG:GWL OK
      Apr  2 22:53:23 DietPi mysgw: SGN:SKP:MSG CMD=3,TYPE=8
      Apr  2 22:53:23 DietPi mysgw: TSF:MSG:SEND,0-0-99-99,s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=OK:0
      Apr  2 22:53:25 DietPi mysgw: TSF:MSG:READ,99-99-0,s=255,c=3,t=24,pt=1,l=1,sg=0:1
      Apr  2 22:53:25 DietPi mysgw: SGN:SKP:MSG CMD=3,TYPE=24
      Apr  2 22:53:25 DietPi mysgw: TSF:MSG:PINGED,ID=99,HP=1
      Apr  2 22:53:25 DietPi mysgw: SGN:SKP:MSG CMD=3,TYPE=25
      Apr  2 22:53:25 DietPi mysgw: TSF:MSG:SEND,0-0-99-99,s=255,c=3,t=25,pt=1,l=1,sg=0,ft=0,st=OK:1
      Apr  2 22:54:18 DietPi mysgw: TSF:MSG:READ,99-99-0,s=1,c=3,t=16,pt=0,l=0,sg=0:
      Apr  2 22:54:18 DietPi mysgw: SGN:SKP:MSG CMD=3,TYPE=16
      Apr  2 22:54:18 DietPi mysgw: !SGN:NCE:GEN
      Apr  2 22:54:23 DietPi mysgw: TSF:MSG:READ,99-99-0,s=0,c=3,t=16,pt=0,l=0,sg=0:
      Apr  2 22:54:23 DietPi mysgw: SGN:SKP:MSG CMD=3,TYPE=16
      Apr  2 22:54:23 DietPi mysgw: !SGN:NCE:GEN
      

      This is kicking my butt... I cant understand that last part about the nonce :(
      I will add the code from the node as soon as possible.

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

      @masmat according to the log parser

      mysgw: !SGN:BND:PWD<8
      

      means the password is too short.

      MasMatM 1 Reply Last reply
      0
      • MasMatM MasMat

        @anticimex I've built a new node, DHT11 that sends temp&hum data. I reconfigured Rpi with this:

        sudo ./configure --my-transport=nrf24 --my-rf24-irq-pin=15 --my-signing-debug --my-signing=password --my-signing-password=XXXXXX --my-gateway=mqtt --my-controller-ip-address=127.0.0.1 --my-mqtt-user=YYYY --my-mqtt-password=ZZZZZ --my-mqtt-publish-topic-prefix=mysensors-out --my-mqtt-subscribe-topic-prefix=mysensors-in --my-mqtt-client-id=mygateway1 --my-leds-err-pin=12 --my-leds-rx-pin=16 --my-leds-tx-pin=18
        

        This is what I get in gw syslog:

        Apr  2 22:53:11 DietPi mysgw: Starting gateway...
        Apr  2 22:53:11 DietPi mysgw: Protocol version - 2.2.0
        Apr  2 22:53:11 DietPi mysgw: MCO:BGN:INIT GW,CP=RNNGLSQX,VER=2.2.0
        Apr  2 22:53:11 DietPi mysgw: !SGN:BND:PWD<8
        Apr  2 22:53:11 DietPi mysgw: !SGN:INI:BND FAIL
        Apr  2 22:53:11 DietPi mysgw: TSF:LRT:OK
        Apr  2 22:53:11 DietPi mysgw: TSM:INIT
        Apr  2 22:53:11 DietPi mysgw: TSF:WUR:MS=0
        Apr  2 22:53:11 DietPi mysgw: TSM:INIT:TSP OK
        Apr  2 22:53:11 DietPi mysgw: TSM:INIT:GW MODE
        Apr  2 22:53:11 DietPi mysgw: TSM:READY:ID=0,PAR=0,DIS=0
        Apr  2 22:53:11 DietPi mysgw: MCO:REG:NOT NEEDED
        Apr  2 22:53:11 DietPi mysgw: MCO:BGN:STP
        Apr  2 22:53:11 DietPi mysgw: MCO:BGN:INIT OK,TSP=1
        Apr  2 22:53:11 DietPi mysgw: GWT:RMQ:MQTT RECONNECT
        Apr  2 22:53:11 DietPi mysgw: connected to 127.0.0.1
        Apr  2 22:53:11 DietPi mysgw: GWT:RMQ:MQTT CONNECTED
        Apr  2 22:53:11 DietPi mysgw: GWT:TPS:TOPIC=mysensors-out/0/255/0/0/18,MSG SENT
        Apr  2 22:53:23 DietPi mysgw: TSF:MSG:READ,99-99-255,s=255,c=3,t=7,pt=0,l=0,sg=0:
        Apr  2 22:53:23 DietPi mysgw: TSF:MSG:BC
        Apr  2 22:53:23 DietPi mysgw: TSF:MSG:FPAR REQ,ID=99
        Apr  2 22:53:23 DietPi mysgw: TSF:PNG:SEND,TO=0
        Apr  2 22:53:23 DietPi mysgw: TSF:CKU:OK
        Apr  2 22:53:23 DietPi mysgw: TSF:MSG:GWL OK
        Apr  2 22:53:23 DietPi mysgw: SGN:SKP:MSG CMD=3,TYPE=8
        Apr  2 22:53:23 DietPi mysgw: TSF:MSG:SEND,0-0-99-99,s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=OK:0
        Apr  2 22:53:25 DietPi mysgw: TSF:MSG:READ,99-99-0,s=255,c=3,t=24,pt=1,l=1,sg=0:1
        Apr  2 22:53:25 DietPi mysgw: SGN:SKP:MSG CMD=3,TYPE=24
        Apr  2 22:53:25 DietPi mysgw: TSF:MSG:PINGED,ID=99,HP=1
        Apr  2 22:53:25 DietPi mysgw: SGN:SKP:MSG CMD=3,TYPE=25
        Apr  2 22:53:25 DietPi mysgw: TSF:MSG:SEND,0-0-99-99,s=255,c=3,t=25,pt=1,l=1,sg=0,ft=0,st=OK:1
        Apr  2 22:54:18 DietPi mysgw: TSF:MSG:READ,99-99-0,s=1,c=3,t=16,pt=0,l=0,sg=0:
        Apr  2 22:54:18 DietPi mysgw: SGN:SKP:MSG CMD=3,TYPE=16
        Apr  2 22:54:18 DietPi mysgw: !SGN:NCE:GEN
        Apr  2 22:54:23 DietPi mysgw: TSF:MSG:READ,99-99-0,s=0,c=3,t=16,pt=0,l=0,sg=0:
        Apr  2 22:54:23 DietPi mysgw: SGN:SKP:MSG CMD=3,TYPE=16
        Apr  2 22:54:23 DietPi mysgw: !SGN:NCE:GEN
        

        This is kicking my butt... I cant understand that last part about the nonce :(
        I will add the code from the node as soon as possible.

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

        @masmat and this

        !SGN:INI:BND FAIL
        

        Means the signing backend failed to initialize. So you need to make the password longer.

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

        1 Reply Last reply
        0
        • mfalkviddM mfalkvidd

          @masmat according to the log parser

          mysgw: !SGN:BND:PWD<8
          

          means the password is too short.

          MasMatM Offline
          MasMatM Offline
          MasMat
          wrote on last edited by
          #898

          @mfalkvidd Made the password 10 characters. From looks of the logs, it's working now.
          I cant believe I skipped the step of making the password longer... Just got too fixated on the password I came up with.

          AnticimexA 1 Reply Last reply
          1
          • MasMatM MasMat

            @mfalkvidd Made the password 10 characters. From looks of the logs, it's working now.
            I cant believe I skipped the step of making the password longer... Just got too fixated on the password I came up with.

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

            @masmat the nonce failures is because the backend never initialized so basically any call to the backend that can fail will fail.

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

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

              I just discovered these USB-to-NRF24 devices. Would it be possible to use that instead of connecting to the GPIO pins?

              https://www.aliexpress.com/item/USB-wireless-serial-module-serial-to-nRF24L01-digital-communication-remote-control-acquisition-module-nRF2401/32722937957.html

              mfalkviddM 1 Reply Last reply
              0
              • alowhumA alowhum

                I just discovered these USB-to-NRF24 devices. Would it be possible to use that instead of connecting to the GPIO pins?

                https://www.aliexpress.com/item/USB-wireless-serial-module-serial-to-nRF24L01-digital-communication-remote-control-acquisition-module-nRF2401/32722937957.html

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

                @alowhum not with the existing code. Is there a datasheet that describes how these modules work?

                One of the reviews says "have no idea wath software to use with this" so documentation might be hard to come by.

                1 Reply Last reply
                1
                • S Offline
                  S Offline
                  sineverba
                  Hardware Contributor
                  wrote on last edited by sineverba
                  #902

                  Background: I use signing software on some nodes + whitelisting on a node (of course only PI serial is on the whitelist).

                  With current --development branch (I think 2.3.0alpha) I cannot anymore set my previous personalized flags on gateway RPI3.

                  In detail, with current master (2.2.0) I can do:

                  sudo mysgw --set-soft-hmac-key=F618D4[...]848992B
                  sudo mysgw --set-soft-serial-key=26[...]9
                  sudo mysgw --set-aes-key=EC7[...]CEB4
                  

                  WIth development I did see only the --get[...] flags and cannot set anymore. Can you confirm?

                  How can I set my previous values for signing?

                  AnticimexA 1 Reply Last reply
                  0
                  • S sineverba

                    Background: I use signing software on some nodes + whitelisting on a node (of course only PI serial is on the whitelist).

                    With current --development branch (I think 2.3.0alpha) I cannot anymore set my previous personalized flags on gateway RPI3.

                    In detail, with current master (2.2.0) I can do:

                    sudo mysgw --set-soft-hmac-key=F618D4[...]848992B
                    sudo mysgw --set-soft-serial-key=26[...]9
                    sudo mysgw --set-aes-key=EC7[...]CEB4
                    

                    WIth development I did see only the --get[...] flags and cannot set anymore. Can you confirm?

                    How can I set my previous values for signing?

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

                    @sineverba I believe this change alters how rPi port handles signing related personalisation: https://github.com/mysensors/MySensors/commit/3c0b2727a56907277d4d04c985fd72b14e4a483c

                    And, as usual, the documentation is a good place to start ;) https://www.mysensors.org/apidocs-beta/group__MySigninggrpPub.html#MySigninggrphowuse

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

                    1 Reply Last reply
                    1
                    • joaoabsJ Offline
                      joaoabsJ Offline
                      joaoabs
                      wrote on last edited by joaoabs
                      #904

                      I'm currently compiling the code for connecting the NRF24l01+ directly to the Raspberry PI. Since I'm running the controller (on this case OpenHab) on the same Raspberry PI, would it be recommended the Ethernet or the serial flavor of it?
                      In the case of ethernet, can I place the own machine IP (127.0.0.1)? This way, if I need to change the IP address of the PI it wouldn't affect the communication between the controller and the MySensors code, right?
                      --my-gateway=ethernet --my-controller-url-address=127.0.0.1

                      And by the way, for the signing configuration, it is mentioned in the documentation "Update the gateway config file with the generated keys/valeus", what file is that (name, path)?

                      I should be able to re-use the keys I have defined before, right? So I just go to step 2 (no need to generate new keys).
                      I'm refering to this link.

                      Thanks,

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

                        --my-controller-url-address=127.0.0.1 is not needed for ethernet

                        1 Reply Last reply
                        0
                        • joaoabsJ Offline
                          joaoabsJ Offline
                          joaoabs
                          wrote on last edited by joaoabs
                          #906

                          I found that the configuration file is /etc/mysensors.conf but " The first time you start the gateway the configuration file will be created if it does not already exist.", so that's why I wasn't finding it.

                          Anyway, the file states that:
                          "Note: The gateway must have been built with signing support to use the options below."

                          What flags should I include to have signing support?

                          OK, found it: just run ./configure -h and there is a list of options. Leaving it here just for future reference

                          gohanG AnticimexA 2 Replies Last reply
                          0
                          • joaoabsJ joaoabs

                            I found that the configuration file is /etc/mysensors.conf but " The first time you start the gateway the configuration file will be created if it does not already exist.", so that's why I wasn't finding it.

                            Anyway, the file states that:
                            "Note: The gateway must have been built with signing support to use the options below."

                            What flags should I include to have signing support?

                            OK, found it: just run ./configure -h and there is a list of options. Leaving it here just for future reference

                            gohanG Offline
                            gohanG Offline
                            gohan
                            Mod
                            wrote on last edited by
                            #907

                            @joaoabs said in 💬 Building a Raspberry Pi Gateway:

                            ust run ./configure -h and there is a list of options. Leaving it here just for future reference

                            it is already written in the article

                            1 Reply Last reply
                            0
                            • joaoabsJ joaoabs

                              I found that the configuration file is /etc/mysensors.conf but " The first time you start the gateway the configuration file will be created if it does not already exist.", so that's why I wasn't finding it.

                              Anyway, the file states that:
                              "Note: The gateway must have been built with signing support to use the options below."

                              What flags should I include to have signing support?

                              OK, found it: just run ./configure -h and there is a list of options. Leaving it here just for future reference

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

                              @joaoabs
                              Release: https://www.mysensors.org/apidocs/group__RaspberryPiGateway.html
                              Beta/development: https://www.mysensors.org/apidocs-beta/group__RaspberryPiGateway.html

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

                              1 Reply Last reply
                              1
                              • joaoabsJ Offline
                                joaoabsJ Offline
                                joaoabs
                                wrote on last edited by
                                #909

                                Thanks for the replies.

                                I've changed the PI from a PI1 to a PI3 and was able to make it working with signing. Its running smoothly, I guess the GW is chosen :).

                                I'll now focus on the nodes, specially the SenseBender micros that are 2xAA battery powered and are consuming ~3% bat per day, but that will be for another post...

                                Thanks!
                                Joaoabs

                                1 Reply Last reply
                                0
                                • D Offline
                                  D Offline
                                  Damian
                                  wrote on last edited by
                                  #910

                                  Hi, is there any way to check the current gateway operating parameters? My purpose is to check the radio channel and power level set before compilation but I would be glad if I could check other configurable parameters. I looked at Makefile.inc and found some flags set, but not the information I was looking for (does it mean that the default values are set)? Debug logs neither provide these informations.

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

                                    What radio are you using?

                                    D 1 Reply Last reply
                                    0
                                    • gohanG gohan

                                      What radio are you using?

                                      D Offline
                                      D Offline
                                      Damian
                                      wrote on last edited by
                                      #912

                                      @gohan nrf24, one deployment pa+lna version with external antenna and the other standard with build-in "zig-zag" antenna.

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

                                        I always set gw to max power if the radio is shielded

                                        D 1 Reply Last reply
                                        0
                                        • joaoabsJ Offline
                                          joaoabsJ Offline
                                          joaoabs
                                          wrote on last edited by joaoabs
                                          #914

                                          Hi,

                                          Is it normal to have frequently these errors in the RPI GW?

                                          May 11 00:43:54 nettemp mysgw: RF24: Recovered from a bad interrupt trigger.
                                          May 11 00:43:54 nettemp mysgw: RF24: Recovered from a bad interrupt trigger.
                                          May 11 00:43:56 nettemp mysgw: RF24: Recovered from a bad interrupt trigger.
                                          May 11 00:43:56 nettemp mysgw: RF24: Recovered from a bad interrupt trigger.
                                          May 11 00:43:58 nettemp mysgw: RF24: Recovered from a bad interrupt trigger.
                                          May 11 00:43:58 nettemp mysgw: RF24: Recovered from a bad interrupt trigger.
                                          May 11 00:44:00 nettemp mysgw: RF24: Recovered from a bad interrupt trigger.
                                          May 11 00:44:00 nettemp mysgw: RF24: Recovered from a bad interrupt trigger.
                                          

                                          Thanks

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


                                          16

                                          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