Skip to content
  • 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. Development
  3. Handling NACKs
  • Getting Started
  • Controller
  • Build
  • Hardware
  • Download/API
  • Forum
  • Store

Handling NACKs

Scheduled Pinned Locked Moved Development
44 Posts 9 Posters 444 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.
  • mfalkviddM mfalkvidd

    Maybe the indication handler could be used to count transmission failures?

    sundberg84S Offline
    sundberg84S Offline
    sundberg84
    Hardware Contributor
    wrote on last edited by
    #18

    @mfalkvidd - do you have a pointer to where I can start, bear in mind Im a very bad coder so I need somewhere to start following the logic.

    Controller: Proxmox VM - Home Assistant
    MySensors GW: Arduino Uno - W5100 Ethernet, Gw Shield Nrf24l01+ 2,4Ghz
    MySensors GW: Arduino Uno - Gw Shield RFM69, 433mhz
    RFLink GW - Arduino Mega + RFLink Shield, 433mhz

    mfalkviddM 1 Reply Last reply
    0
    • sundberg84S sundberg84

      @mfalkvidd - do you have a pointer to where I can start, bear in mind Im a very bad coder so I need somewhere to start following the logic.

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

      @sundberg84 seems like it isn't very well documented, but https://forum.mysensors.org/topic/7181/what-do-the-error-led-flashes-mean/9?_=1582119986104 has some information.

      increasing a counter for every INDICATION_ERR_TX and another counter for every INDICATION_TX could be sufficient to get a good ratio of how many successful and failed transmissions there are.

      Edit: https://forum.mysensors.org/post/89230 might be better to start from

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

        Something like this should work. Not sure if a power meter is the best way to present to controller, fee free to use something better.

        // Enable debug prints to serial monitor
        #define MY_DEBUG
        
        // Enable and select radio type attached
        #define MY_RADIO_RF24
        //#define MY_RADIO_NRF5_ESB
        //#define MY_RADIO_RFM69
        //#define MY_RADIO_RFM95
        
        // Enabled repeater feature for this node
        #define MY_REPEATER_FEATURE
        
        #define MY_INDICATION_HANDLER
        static uint32_t txOK = 0;
        static uint32_t txERR = 0;
        #define REPORT_INTERVAL 300000 // Report every 5 minutes
        #define CHILD_ID_TX_OK 1
        #define CHILD_ID_TX_ERR 2
        
        #include <MySensors.h>
        
        MyMessage txOKmsg(CHILD_ID_TX_OK, V_KWH);
        MyMessage txERRmsg(CHILD_ID_TX_ERR, V_KWH);
        
        void indication(indication_t ind)
        {
          switch (ind)
          {
            case INDICATION_TX:
              txOK++;
              break;
            case INDICATION_ERR_TX:
              txERR++;
              break;
          }
        }
        
        void setup()
        {
        
        }
        
        void presentation()
        {
          //Send the sensor node sketch version information to the gateway
          sendSketchInfo(F("Repeater Node"), F("1.0"));
          present(CHILD_ID_TX_OK, S_POWER);
          present(CHILD_ID_TX_ERR, S_POWER);
        }
        
        void loop()
        {
          static unsigned long last_send = 0;
          if (millis() - last_send > REPORT_INTERVAL) {
            send(txOKmsg.set(txOK));
            send(txERRmsg.set(txERR));
            last_send=millis();
          }
        }
        
        

        The same could probably be added to any gateway sketch.

        sundberg84S 1 Reply Last reply
        1
        • mfalkviddM mfalkvidd

          Something like this should work. Not sure if a power meter is the best way to present to controller, fee free to use something better.

          // Enable debug prints to serial monitor
          #define MY_DEBUG
          
          // Enable and select radio type attached
          #define MY_RADIO_RF24
          //#define MY_RADIO_NRF5_ESB
          //#define MY_RADIO_RFM69
          //#define MY_RADIO_RFM95
          
          // Enabled repeater feature for this node
          #define MY_REPEATER_FEATURE
          
          #define MY_INDICATION_HANDLER
          static uint32_t txOK = 0;
          static uint32_t txERR = 0;
          #define REPORT_INTERVAL 300000 // Report every 5 minutes
          #define CHILD_ID_TX_OK 1
          #define CHILD_ID_TX_ERR 2
          
          #include <MySensors.h>
          
          MyMessage txOKmsg(CHILD_ID_TX_OK, V_KWH);
          MyMessage txERRmsg(CHILD_ID_TX_ERR, V_KWH);
          
          void indication(indication_t ind)
          {
            switch (ind)
            {
              case INDICATION_TX:
                txOK++;
                break;
              case INDICATION_ERR_TX:
                txERR++;
                break;
            }
          }
          
          void setup()
          {
          
          }
          
          void presentation()
          {
            //Send the sensor node sketch version information to the gateway
            sendSketchInfo(F("Repeater Node"), F("1.0"));
            present(CHILD_ID_TX_OK, S_POWER);
            present(CHILD_ID_TX_ERR, S_POWER);
          }
          
          void loop()
          {
            static unsigned long last_send = 0;
            if (millis() - last_send > REPORT_INTERVAL) {
              send(txOKmsg.set(txOK));
              send(txERRmsg.set(txERR));
              last_send=millis();
            }
          }
          
          

          The same could probably be added to any gateway sketch.

          sundberg84S Offline
          sundberg84S Offline
          sundberg84
          Hardware Contributor
          wrote on last edited by
          #21

          @mfalkvidd - appreciate you time here, should have taken me hours and hours!

          Controller: Proxmox VM - Home Assistant
          MySensors GW: Arduino Uno - W5100 Ethernet, Gw Shield Nrf24l01+ 2,4Ghz
          MySensors GW: Arduino Uno - Gw Shield RFM69, 433mhz
          RFLink GW - Arduino Mega + RFLink Shield, 433mhz

          mfalkviddM 1 Reply Last reply
          1
          • sundberg84S sundberg84

            @mfalkvidd - appreciate you time here, should have taken me hours and hours!

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

            @sundberg84 you're welcome. I'm trying to add the feature to one of my gateways now (I don't have any repeaters).

            skywatchS 1 Reply Last reply
            0
            • mfalkviddM mfalkvidd

              @sundberg84 you're welcome. I'm trying to add the feature to one of my gateways now (I don't have any repeaters).

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

              @mfalkvidd I won't sleep tonight now! - Can't wait to see how it works out in the 'real world' for you....

              mfalkviddM 1 Reply Last reply
              0
              • skywatchS skywatch

                @mfalkvidd I won't sleep tonight now! - Can't wait to see how it works out in the 'real world' for you....

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

                @skywatch so far it is not showing anything interesting. On the other hand, I don't think my GW will transmit anything (no nodes request anything from the controller). This is what it looks like in Domoticz:
                99630ff0-30bc-4b3b-966d-77dc72ba340f-image.png

                I'll let it run overnight, will post an update tomorrow.

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

                  As expected, there have been no errors recorded. The number of TX OK per hour is constant.
                  Domoticz log file shows that the gateway reports every 5 minutes.
                  usage-last-7-days.png

                  Maybe the gateway should look at INDICATION_GW_TX.

                  sundberg84S 1 Reply Last reply
                  0
                  • mfalkviddM mfalkvidd

                    As expected, there have been no errors recorded. The number of TX OK per hour is constant.
                    Domoticz log file shows that the gateway reports every 5 minutes.
                    usage-last-7-days.png

                    Maybe the gateway should look at INDICATION_GW_TX.

                    sundberg84S Offline
                    sundberg84S Offline
                    sundberg84
                    Hardware Contributor
                    wrote on last edited by sundberg84
                    #26

                    @mfalkvidd - INDICATION_GW_TX sounds like a good plan. This is a great tool I think for the future to evaluate and debug your network. I used S_CUSTOM and a utility meter (hourly) in HA to get the values.

                    Just started up, first values in - will report back when I have more data:
                    No errors so far :)

                    Just so I understand: case INDICATION_ERR_TX: means NACK ?

                    ded136f0-d906-4102-bfc6-daa433bf8763-image.png

                    Controller: Proxmox VM - Home Assistant
                    MySensors GW: Arduino Uno - W5100 Ethernet, Gw Shield Nrf24l01+ 2,4Ghz
                    MySensors GW: Arduino Uno - Gw Shield RFM69, 433mhz
                    RFLink GW - Arduino Mega + RFLink Shield, 433mhz

                    mfalkviddM 1 Reply Last reply
                    1
                    • sundberg84S sundberg84

                      @mfalkvidd - INDICATION_GW_TX sounds like a good plan. This is a great tool I think for the future to evaluate and debug your network. I used S_CUSTOM and a utility meter (hourly) in HA to get the values.

                      Just started up, first values in - will report back when I have more data:
                      No errors so far :)

                      Just so I understand: case INDICATION_ERR_TX: means NACK ?

                      ded136f0-d906-4102-bfc6-daa433bf8763-image.png

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

                      @sundberg84 I think so.

                      https://github.com/mysensors/MySensors/blob/79d7977cff47555d7bc812036caa6159df9cc8c7/core/MyTransport.cpp#L560 (I've cut out some code for brevity)

                      	const bool result = transportSendWrite(route, message);
                      #if !defined(MY_GATEWAY_FEATURE)
                      	// update counter
                      	if (route == _transportConfig.parentNodeId) {
                      
                      		if (!result) {
                      			setIndication(INDICATION_ERR_TX);
                      			_transportSM.failedUplinkTransmissions++;
                      		} else {
                      			_transportSM.failedUplinkTransmissions = 0u;
                      		}
                      	}
                      #else
                      	if(!result) {
                      		setIndication(INDICATION_ERR_TX);
                      	}
                      #endif
                      
                      

                      https://github.com/mysensors/MySensors/blob/79d7977cff47555d7bc812036caa6159df9cc8c7/core/MyTransport.h#L433

                      /**
                      * @brief Send message to recipient
                      * @param to Recipient of message
                      * @param message
                      * @return true if message sent successfully
                      */
                      

                      I guess we could use _transportSM.failedUplinkTransmissions instead of using our own counter.

                      1 Reply Last reply
                      1
                      • electrikE Offline
                        electrikE Offline
                        electrik
                        wrote on last edited by
                        #28

                        @mfalkvidd said in Handling NACKs:

                        I guess we could use _transportSM.failedUplinkTransmissions instead of using our own counter.

                        That one is reset when a message is sent successfully, and we want to know the total number of failed msgs right?

                        mfalkviddM 1 Reply Last reply
                        0
                        • electrikE electrik

                          @mfalkvidd said in Handling NACKs:

                          I guess we could use _transportSM.failedUplinkTransmissions instead of using our own counter.

                          That one is reset when a message is sent successfully, and we want to know the total number of failed msgs right?

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

                          @electrik I see. Good point.

                          sundberg84S 1 Reply Last reply
                          0
                          • mfalkviddM mfalkvidd

                            @electrik I see. Good point.

                            sundberg84S Offline
                            sundberg84S Offline
                            sundberg84
                            Hardware Contributor
                            wrote on last edited by
                            #30

                            Something strange happened last hour:

                            521328c2-1331-4efb-8998-956c027748f7-image.png

                            But atleast now I know something is up.

                            Controller: Proxmox VM - Home Assistant
                            MySensors GW: Arduino Uno - W5100 Ethernet, Gw Shield Nrf24l01+ 2,4Ghz
                            MySensors GW: Arduino Uno - Gw Shield RFM69, 433mhz
                            RFLink GW - Arduino Mega + RFLink Shield, 433mhz

                            skywatchS mfalkviddM 2 Replies Last reply
                            1
                            • sundberg84S sundberg84

                              Something strange happened last hour:

                              521328c2-1331-4efb-8998-956c027748f7-image.png

                              But atleast now I know something is up.

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

                              @sundberg84 said in Handling NACKs:

                              Something strange happened last hour:

                              @sundberg84 - OMG, I have sat through whole flims with less suspense than this thread! ......

                              1 Reply Last reply
                              1
                              • sundberg84S sundberg84

                                Something strange happened last hour:

                                521328c2-1331-4efb-8998-956c027748f7-image.png

                                But atleast now I know something is up.

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

                                @sundberg84 that's a very nice visual representation. Could you share how you set that up in HA?

                                sundberg84S 1 Reply Last reply
                                0
                                • mfalkviddM mfalkvidd

                                  @sundberg84 that's a very nice visual representation. Could you share how you set that up in HA?

                                  sundberg84S Offline
                                  sundberg84S Offline
                                  sundberg84
                                  Hardware Contributor
                                  wrote on last edited by
                                  #33

                                  @mfalkvidd - its accually Grafana and Influx database. So HA sends values to Influx which are visually presented in Grafana. Im sure you can do this from Domoticz as well... there are some limitations in Influx db so I might change to another database in the future which suits me better.

                                  Controller: Proxmox VM - Home Assistant
                                  MySensors GW: Arduino Uno - W5100 Ethernet, Gw Shield Nrf24l01+ 2,4Ghz
                                  MySensors GW: Arduino Uno - Gw Shield RFM69, 433mhz
                                  RFLink GW - Arduino Mega + RFLink Shield, 433mhz

                                  mfalkviddM 1 Reply Last reply
                                  0
                                  • sundberg84S sundberg84

                                    @mfalkvidd - its accually Grafana and Influx database. So HA sends values to Influx which are visually presented in Grafana. Im sure you can do this from Domoticz as well... there are some limitations in Influx db so I might change to another database in the future which suits me better.

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

                                    @sundberg84 sorry for going off topic, but what limitations have you experienced?

                                    I've been thinking about using something better than Domoticz for a long time. Maybe Grafana is the way to go.

                                    BearWithBeardB sundberg84S 2 Replies Last reply
                                    0
                                    • mfalkviddM mfalkvidd

                                      @sundberg84 sorry for going off topic, but what limitations have you experienced?

                                      I've been thinking about using something better than Domoticz for a long time. Maybe Grafana is the way to go.

                                      BearWithBeardB Offline
                                      BearWithBeardB Offline
                                      BearWithBeard
                                      wrote on last edited by BearWithBeard
                                      #35

                                      @mfalkvidd Domoticz is a full-blown home automation system, isn't it? Grafana is just a monitoring dashboard that pulls data from a time-series database (like InfluxDB) and generates fancy graphs. It can't automate and control things or send commands other than alarms (eg. if a value exceeds a threshold, or no new data came in since x minutes, send an email).

                                      One of InfluxDBs limitations is that you can't use (or only some basic) math operations on db queries, which may limit what you can graph in Grafana. Also, changing data types of existing fields in measurements is also not possible, which is annoying, because Grafana treats values differently based on their data type. @sundberg84 can probably name more limitations. I'd love to switch to Carbon / Graphite for data collection and storage... if only it wouldn't take time to read up, setup and migrate all the data. :tired_face:

                                      By the way - great idea to use the indication handler to log radio reliability! :+1: Definitely going to implement this on my gateways repeaters when I find the time.

                                      1 Reply Last reply
                                      2
                                      • mfalkviddM mfalkvidd

                                        @sundberg84 sorry for going off topic, but what limitations have you experienced?

                                        I've been thinking about using something better than Domoticz for a long time. Maybe Grafana is the way to go.

                                        sundberg84S Offline
                                        sundberg84S Offline
                                        sundberg84
                                        Hardware Contributor
                                        wrote on last edited by sundberg84
                                        #36

                                        @mfalkvidd - @BearWithBeard said it. The limitations are mostly math related. For example, you cant show a graph with current and last years values (timeshift) on the same graph due to that limitation in InfluxDB. I want to compare power usage this day to same day last year - not possible. Im looking to change to Graphite as well instead of Influx.

                                        Moving from Domoticz to HA was a great move for me, but not as i thought. Im using HA more or less just as an umbrella. I would say im using only the OS Hass.IO and not using Home Assistant that much. Whats good in Home Assistant is that its quite easy to integrate different protocolls like MySensors or whatever you use. But after that I dont use Home Assistant but the great possibilities to have add-ons on Hass.IO. I use Node Red for all my automations (Extremly easy compared to code!), Influx + Grafana for visual, motionEyeOs for camera secutiry and more... all you have to do is install the addon from the "store" and you are more or less ready to go. These addons im sure you can install with domoticz as well if you like the integrations with the different protocolls there.

                                        i think we have handeled the NACK questions so no worries for me if we go off topic, but if you rather like send me a dm.

                                        Controller: Proxmox VM - Home Assistant
                                        MySensors GW: Arduino Uno - W5100 Ethernet, Gw Shield Nrf24l01+ 2,4Ghz
                                        MySensors GW: Arduino Uno - Gw Shield RFM69, 433mhz
                                        RFLink GW - Arduino Mega + RFLink Shield, 433mhz

                                        1 Reply Last reply
                                        1
                                        • sundberg84S Offline
                                          sundberg84S Offline
                                          sundberg84
                                          Hardware Contributor
                                          wrote on last edited by
                                          #37

                                          I just love this idea. Implemented the code on my second now, one to go.

                                          c33a129c-12ef-4a22-a966-d7c0dbe3847b-image.png

                                          Controller: Proxmox VM - Home Assistant
                                          MySensors GW: Arduino Uno - W5100 Ethernet, Gw Shield Nrf24l01+ 2,4Ghz
                                          MySensors GW: Arduino Uno - Gw Shield RFM69, 433mhz
                                          RFLink GW - Arduino Mega + RFLink Shield, 433mhz

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


                                          4

                                          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
                                          • OpenHardware.io
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular