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. Troubleshooting
  3. [Solved]UPL:Fail

[Solved]UPL:Fail

Scheduled Pinned Locked Moved Troubleshooting
47 Posts 7 Posters 15.2k Views 5 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.
  • hekH Offline
    hekH Offline
    hek
    Admin
    wrote on last edited by
    #16

    https://github.com/mysensors/MySensorsArduinoExamples/tree/master/examples/GatewayENC28J60

    1 Reply Last reply
    0
    • Pictor LallemandP Offline
      Pictor LallemandP Offline
      Pictor Lallemand
      wrote on last edited by
      #17

      it didnt change anything here is the log for sensors

      Starting sensor (RNNNA-, 2.0.0)
      TSM:INIT
      TSM:RADIO:OK
      TSP:ASSIGNID:OK (ID=123)
      TSM:FPAR
      TSP:MSG:SEND 123-123-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
      TSM:FPAR
      TSP:MSG:SEND 123-123-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
      TSM:FPAR
      TSP:MSG:SEND 123-123-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
      TSM:FPAR
      TSP:MSG:SEND 123-123-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
      !TSM:FPAR:FAIL
      !TSM:FAILURE
      TSM:PDT
      TSM:INIT
      TSM:RADIO:OK
      TSP:ASSIGNID:OK (ID=123)
      TSM:FPAR
      TSP:MSG:SEND 123-123-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
      TSP:MSG:READ 0-0-123 s=255,c=3,t=8,pt=1,l=1,sg=0:0
      TSP:MSG:FPAR RES (ID=0, dist=0)
      TSP:MSG:PAR OK (ID=0, dist=1)
      TSP:MSG:READ 0-0-123 s=255,c=3,t=8,pt=1,l=1,sg=0:0
      TSP:MSG:FPAR RES (ID=0, dist=0)
      TSM:FPAR:OK
      TSM:ID
      TSM:CHKID:OK (ID=123)
      TSM:UPL
      TSP:PING:SEND (dest=0)
      !TSP:MSG:SEND 123-123-0-0 s=255,c=3,t=24,pt=1,l=1,sg=0,ft=0,st=fail:1
      TSP:CHKUPL:FAIL (hops=255)
      !TSM:UPL:FAIL
      TSM:FPAR
      
      
      

      the sketch use

      /**
       * The MySensors Arduino library handles the wireless radio link and protocol
       * between your home built sensors/actuators and HA controller of choice.
       * The sensors forms a self healing radio network with optional repeaters. Each
       * repeater and gateway builds a routing tables in EEPROM which keeps track of the
       * network topology allowing messages to be routed to nodes.
       *
       * Created by Henrik Ekblad <henrik.ekblad@mysensors.org>
       * Copyright (C) 2013-2015 Sensnology AB
       * Full contributor list: https://github.com/mysensors/Arduino/graphs/contributors
       *
       * Documentation: http://www.mysensors.org
       * Support Forum: http://forum.mysensors.org
       *
       * This program is free software; you can redistribute it and/or
       * modify it under the terms of the GNU General Public License
       * version 2 as published by the Free Software Foundation.
       *
       *******************************
       *
       * REVISION HISTORY
       * Version 1.0 - Henrik Ekblad
       * 
       * DESCRIPTION
       * Example sketch showing how to control physical relays. 
       * This example will remember relay state after power failure.
       * http://www.mysensors.org/build/relay
       */ 
      
      // Enable debug prints to serial monitor
      #define MY_DEBUG 
      
      // Enable and select radio type attached
      #define MY_RADIO_NRF24
      //#define MY_RADIO_RFM69
      
      // Enable repeater functionality for this node
      #define MY_REPEATER_FEATURE
      
      #include <SPI.h>
      #include <MySensors.h>
      
      #define RELAY_1  8  // Arduino Digital I/O pin number for first relay (second on pin+1 etc)
      #define NUMBER_OF_RELAYS 1 // Total number of attached relays
      #define RELAY_ON 1  // GPIO value to write to turn on attached relay
      #define RELAY_OFF 0 // GPIO value to write to turn off attached relay
      
      
      void before() { 
        for (int sensor=1, pin=RELAY_1; sensor<=NUMBER_OF_RELAYS;sensor++, pin++) {
          // Then set relay pins in output mode
          pinMode(pin, OUTPUT);   
          // Set relay to last known state (using eeprom storage) 
          digitalWrite(pin, loadState(sensor)?RELAY_ON:RELAY_OFF);
        }
      }
      
      void setup() {
        
      }
      
      void presentation()  
      {   
        // Send the sketch version information to the gateway and Controller
        sendSketchInfo("Relay", "1.0");
      
        for (int sensor=1, pin=RELAY_1; sensor<=NUMBER_OF_RELAYS;sensor++, pin++) {
          // Register all sensors to gw (they will be created as child devices)
          present(sensor, S_LIGHT);
        }
      }
      
      
      void loop() 
      {
        
      }
      
      void receive(const MyMessage &message) {
        // We only expect one type of message from controller. But we better check anyway.
        if (message.type==V_LIGHT) {
           // Change relay state
           digitalWrite(message.sensor-1+RELAY_1, message.getBool()?RELAY_ON:RELAY_OFF);
           // Store state in eeprom
           saveState(message.sensor, message.getBool());
           // Write some debug info
           Serial.print("Incoming change for sensor:");
           Serial.print(message.sensor);
           Serial.print(", New status: ");
           Serial.println(message.getBool());
         } 
      }
      

      and that of the gateway

      0;255;3;0;9;Starting gateway (RNNGA-, 2.0.0)
      0;255;3;0;9;TSM:INIT
      0;255;3;0;9;TSM:RADIO:OK
      0;255;3;0;9;TSM:GW MODE
      0;255;3;0;9;TSM:READY
      IP: 192.168.1.15
      0;255;3;0;9;No registration required
      0;255;3;0;9;Init complete, id=0, parent=0, distance=0, registration=1
      0;255;3;0;9;Eth: connect
      0;255;3;0;9;Eth: 0;0;3;0;2;
      0;255;3;0;9;Eth: 0;0;3;0;2;Get Version
      0;255;3;0;9;Eth: 0;0;3;0;18;PING
      0;255;3;0;9;Eth: 0;0;3;0;18;PING
      0;255;3;0;9;TSP:SANCHK:OK
      

      the sketch use

      /**
       * The MySensors Arduino library handles the wireless radio link and protocol
       * between your home built sensors/actuators and HA controller of choice.
       * The sensors forms a self healing radio network with optional repeaters. Each
       * repeater and gateway builds a routing tables in EEPROM which keeps track of the
       * network topology allowing messages to be routed to nodes.
       *
       * Created by Henrik Ekblad <henrik.ekblad@mysensors.org>
       * Copyright (C) 2013-2015 Sensnology AB
       * Full contributor list: https://github.com/mysensors/Arduino/graphs/contributors
       *
       * Documentation: http://www.mysensors.org
       * Support Forum: http://forum.mysensors.org
       *
       * This program is free software; you can redistribute it and/or
       * modify it under the terms of the GNU General Public License
       * version 2 as published by the Free Software Foundation.
       *
       *******************************
       *
       * REVISION HISTORY
       * Version 1.0 - Henrik EKblad
       * Contribution by a-lurker and Anticimex,
       * Contribution by Norbert Truchsess <norbert.truchsess@t-online.de>
       * Contribution by Tomas Hozza <thozza@gmail.com>
       *
       *
       * DESCRIPTION
       * The EthernetGateway sends data received from sensors to the ethernet link.
       * The gateway also accepts input on ethernet interface, which is then sent out to the radio network.
       *
       * The GW code is designed for Arduino 328p / 16MHz.  ATmega168 does not have enough memory to run this program.
       *
       * LED purposes:
       * - To use the feature, uncomment WITH_LEDS_BLINKING in MyConfig.h
       * - RX (green) - blink fast on radio message recieved. In inclusion mode will blink fast only on presentation recieved
       * - TX (yellow) - blink fast on radio message transmitted. In inclusion mode will blink slowly
       * - ERR (red) - fast blink on error during transmission error or recieve crc error
       *
       * See http://www.mysensors.org/build/ethernet_gateway for wiring instructions.
       *
       */
      
      // Enable debug prints to serial monitor
      #define MY_DEBUG 
      
      // Enable and select radio type attached
      #define MY_RADIO_NRF24
      //#define MY_RADIO_RFM69
      
      // When ENC28J60 is connected we have to move CE/CSN pins for NRF radio
      #define MY_RF24_CE_PIN 5
      #define MY_RF24_CS_PIN 6
      
      // Enable gateway ethernet module type 
      #define MY_GATEWAY_ENC28J60
      
      // Gateway IP address
      #define MY_IP_ADDRESS 192,168,1,15  
      
      // The port to keep open on node server mode / or port to contact in client mode
      #define MY_PORT 5003   
      
      // Controller ip address. Enables client mode (default is "server" mode). 
      // Also enable this if MY_USE_UDP is used and you want sensor data sent somewhere. 
      //#define MY_CONTROLLER_IP_ADDRESS 192, 168, 178, 254   
       
      // The MAC address can be anything you want but should be unique on your network.
      // Newer boards have a MAC address printed on the underside of the PCB, which you can (optionally) use.
      // Note that most of the Ardunio examples use  "DEAD BEEF FEED" for the MAC address.
      #define MY_MAC_ADDRESS 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED
      
      // Flash leds on rx/tx/err
      #define MY_LEDS_BLINKING_FEATURE
      // Set blinking period
      #define MY_DEFAULT_LED_BLINK_PERIOD 300
      
      // Enable inclusion mode
      #define MY_INCLUSION_MODE_FEATURE
      // Enable Inclusion mode button on gateway
      #define MY_INCLUSION_BUTTON_FEATURE
      // Set inclusion mode duration (in seconds)
      #define MY_INCLUSION_MODE_DURATION 60 
      // Digital pin used for inclusion mode button
      #define MY_INCLUSION_MODE_BUTTON_PIN  3 
      
      #define MY_DEFAULT_ERR_LED_PIN 7  // Error led pin
      #define MY_DEFAULT_RX_LED_PIN  8  // Receive led pin
      #define MY_DEFAULT_TX_LED_PIN  9  // the PCB, on board LED
      
      #include <SPI.h>
      #include <UIPEthernet.h>
      #include <MySensors.h>
      
      
      void setup()
      {
      }
      
      void loop() {
      }```
      
        i add a capacitor 220U
      1 Reply Last reply
      0
      • Pictor LallemandP Offline
        Pictor LallemandP Offline
        Pictor Lallemand
        wrote on last edited by
        #18

        the gateway log

        0;255;3;0;9;Starting gateway (RNNGA-, 2.0.0)
        0;255;3;0;9;TSM:INIT
        0;255;3;0;9;TSM:RADIO:OK
        0;255;3;0;9;TSM:GW MODE
        0;255;3;0;9;TSM:READY
        IP: 192.168.1.15
        0;255;3;0;9;No registration required
        0;255;3;0;9;Init complete, id=0, parent=0, distance=0, registration=1
        0;255;3;0;9;Eth: connect
        0;255;3;0;9;Eth: 0;0;3;0;2;
        0;255;3;0;9;Eth: 0;0;3;0;2;Get Version
        0;255;3;0;9;Eth: 0;0;3;0;18;PING
        0;255;3;0;9;Eth: 0;0;3;0;18;PING
        0;255;3;0;9;TSP:SANCHK:OK
        0;255;3;0;9;Eth: 0;0;3;0;18;PING
        0;255;3;0;9;Eth: 0;0;3;0;18;PING
        0;255;3;0;9;TSP:MSG:READ 123-123-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
        0;255;3;0;9;TSP:MSG:BC
        0;255;3;0;9;TSP:MSG:FPAR REQ (sender=123)
        0;255;3;0;9;TSP:CHKUPL:OK
        0;255;3;0;9;TSP:MSG:GWL OK
        0;255;3;0;9;TSP:MSG:SEND 0-0-123-123 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=ok:0
        0;255;3;0;9;TSP:MSG:READ 123-123-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
        0;255;3;0;9;TSP:MSG:BC
        0;255;3;0;9;TSP:MSG:FPAR REQ (sender=123)
        0;255;3;0;9;TSP:CHKUPL:OK (FLDCTRL)
        0;255;3;0;9;TSP:MSG:GWL OK
        0;255;3;0;9;TSP:MSG:SEND 0-0-123-123 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=ok:0
        0;255;3;0;9;Eth: 0;0;3;0;18;PING
        0;255;3;0;9;Eth: 0;0;3;0;18;PING
        0;255;3;0;9;Eth: 0;0;3;0;18;PING
        0;255;3;0;9;TSP:MSG:READ 123-123-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
        0;255;3;0;9;TSP:MSG:BC
        0;255;3;0;9;TSP:MSG:FPAR REQ (sender=123)
        0;255;3;0;9;TSP:CHKUPL:OK
        0;255;3;0;9;TSP:MSG:GWL OK
        0;255;3;0;9;TSP:MSG:SEND 0-0-123-123 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=ok:0
        0;255;3;0;9;Eth: 0;0;3;0;18;PING
        0;255;3;0;9;TSP:SANCHK:OK
        0;255;3;0;9;Eth: 0;0;3;0;18;PING
        0;255;3;0;9;Eth: 0;0;3;0;18;PING
        0;255;3;0;9;TSP:MSG:READ 123-123-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
        0;255;3;0;9;TSP:MSG:BC
        0;255;3;0;9;TSP:MSG:FPAR REQ (sender=123)
        0;255;3;0;9;TSP:CHKUPL:OK
        0;255;3;0;9;TSP:MSG:GWL OK
        0;255;3;0;9;TSP:MSG:SEND 0-0-123-123 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=ok:0
        0;255;3;0;9;TSP:MSG:READ 123-123-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
        0;255;3;0;9;TSP:MSG:BC
        0;255;3;0;9;TSP:MSG:FPAR REQ (sender=123)
        0;255;3;0;9;TSP:CHKUPL:OK (FLDCTRL)
        0;255;3;0;9;TSP:MSG:GWL OK
        0;255;3;0;9;TSP:MSG:SEND 0-0-123-123 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=ok:0
        0;255;3;0;9;Eth: 0;0;3;0;18;PING
        0;255;3;0;9;Eth: 0;0;3;0;18;PING
        0;255;3;0;9;Eth: 0;0;3;0;18;PING
        0;255;3;0;9;TSP:MSG:READ 123-123-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
        0;255;3;0;9;TSP:MSG:BC
        0;255;3;0;9;TSP:MSG:FPAR REQ (sender=123)
        0;255;3;0;9;TSP:CHKUPL:OK
        0;255;3;0;9;TSP:MSG:GWL OK
        0;255;3;0;9;TSP:MSG:SEND 0-0-123-123 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=ok:0
        0;255;3;0;9;TSP:MSG:READ 123-123-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
        0;255;3;0;9;TSP:MSG:BC
        0;255;3;0;9;TSP:MSG:FPAR REQ (sender=123)
        0;255;3;0;9;TSP:CHKUPL:OK (FLDCTRL)
        0;255;3;0;9;TSP:MSG:GWL OK
        0;255;3;0;9;TSP:MSG:SEND 0-0-123-123 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=ok:0
        0;255;3;0;9;Eth: 0;0;3;0;18;PING
        0;255;3;0;9;TSP:SANCHK:OK
        
        1 Reply Last reply
        0
        • X Offline
          X Offline
          xefil
          wrote on last edited by
          #19

          Do you have some spare-parts to use a different radio? My gateway has a radio with nrf24l01+pa+lna to increase the range. Maybe the gain is needed with the new API? I don't know. How far are the two objects?

          Simon

          1 Reply Last reply
          0
          • Pictor LallemandP Offline
            Pictor LallemandP Offline
            Pictor Lallemand
            wrote on last edited by
            #20

            the gateway and the remote sensors are 100 cm I use these nRF24L01 I'm beginner with mysensors. I'm really frustrated that it does not work properly malgrer all my efforts to get it working properly alt text

            tekkaT 1 Reply Last reply
            0
            • Pictor LallemandP Pictor Lallemand

              the gateway and the remote sensors are 100 cm I use these nRF24L01 I'm beginner with mysensors. I'm really frustrated that it does not work properly malgrer all my efforts to get it working properly alt text

              tekkaT Offline
              tekkaT Offline
              tekka
              Admin
              wrote on last edited by
              #21

              @Pictor-Lallemand

              Lets start with a simple setup:

              • all radio caps >= 22uF (ideal 100uF)
              • latest MySensors lib (i.e. 2.0.0)

              Gateway - Program GatewaySerial from the MySensors examples
              Node - Program this simple sketch:

              #define MY_DEBUG 
              #define MY_RADIO_NRF24
              #define MY_NODE_ID 100
              
              #include <MySensors.h>
              
              MyMessage msgGeneral(0, V_VAR1);
              uint32_t counter = 0, lastSend = 0;
              uint8_t rebootCounter = 5;
              
              void presentation() {
                sendSketchInfo("TestNode", "1.0");
                present(0, S_ARDUINO_NODE, "Counter");
              }
              
              void loop() {
                 if (millis() - lastSend > 500) {
                    msgGeneral.setDestination(GATEWAY_ADDRESS);
                    send(msgGeneral.set(counter), true);
                    counter = 0;
                    lastSend = millis();
                    if(!rebootCounter--) {
                      hwReboot();
                    }
                 }
                 counter++;
              }
              

              ...and post the debug log from both, GW and node.

              1 Reply Last reply
              0
              • hensingH Offline
                hensingH Offline
                hensing
                wrote on last edited by
                #22

                same problem here:
                minimal example worked and I figured out that assignment of an ID helps :)
                Maybe I missed this point that I have to and that auto assignment doesn't work the way I thought.

                tekkaT 1 Reply Last reply
                0
                • hensingH hensing

                  same problem here:
                  minimal example worked and I figured out that assignment of an ID helps :)
                  Maybe I missed this point that I have to and that auto assignment doesn't work the way I thought.

                  tekkaT Offline
                  tekkaT Offline
                  tekka
                  Admin
                  wrote on last edited by
                  #23

                  @hensing said:

                  same problem here:
                  minimal example worked and I figured out that assignment of an ID helps :)
                  Maybe I missed this point that I have to and that auto assignment doesn't work the way I thought.

                  Ok, so not related to UPL:Fail (as the title of this topic suggests)?

                  1 Reply Last reply
                  0
                  • Pictor LallemandP Offline
                    Pictor LallemandP Offline
                    Pictor Lallemand
                    wrote on last edited by
                    #24

                    i add 22uF capacitor to node and GW

                    debug gw

                    0;255;3;0;9;Starting gateway (RNNGA-, 2.0.0)
                    0;255;3;0;9;TSM:INIT
                    0;255;3;0;9;TSM:RADIO:OK
                    0;255;3;0;9;TSM:GW MODE
                    0;255;3;0;9;TSM:READY
                    0;255;3;0;14;Gateway startup complete.
                    0;255;0;0;18;2.0.0
                    0;255;3;0;9;No registration required
                    0;255;3;0;9;Init complete, id=0, parent=0, distance=0, registration=1
                    0;255;3;0;9;TSP:MSG:READ 100-100-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
                    0;255;3;0;9;TSP:MSG:BC
                    0;255;3;0;9;TSP:MSG:FPAR REQ (sender=100)
                    0;255;3;0;9;TSP:CHKUPL:OK
                    0;255;3;0;9;TSP:MSG:GWL OK
                    0;255;3;0;9;TSP:MSG:SEND 0-0-100-100 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=ok:0
                    0;255;3;0;9;TSP:MSG:READ 100-100-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
                    0;255;3;0;9;TSP:MSG:BC
                    0;255;3;0;9;TSP:MSG:FPAR REQ (sender=100)
                    0;255;3;0;9;TSP:CHKUPL:OK (FLDCTRL)
                    0;255;3;0;9;TSP:MSG:GWL OK
                    0;255;3;0;9;TSP:MSG:SEND 0-0-100-100 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=ok:0
                    0;255;3;0;9;TSP:MSG:READ 100-100-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
                    0;255;3;0;9;TSP:MSG:BC
                    0;255;3;0;9;TSP:MSG:FPAR REQ (sender=100)
                    0;255;3;0;9;TSP:CHKUPL:OK
                    0;255;3;0;9;TSP:MSG:GWL OK
                    0;255;3;0;9;TSP:MSG:SEND 0-0-100-100 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=ok:0
                    0;255;3;0;9;TSP:MSG:READ 100-100-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
                    0;255;3;0;9;TSP:MSG:BC
                    0;255;3;0;9;TSP:MSG:FPAR REQ (sender=100)
                    0;255;3;0;9;TSP:CHKUPL:OK (FLDCTRL)
                    0;255;3;0;9;TSP:MSG:GWL OK
                    0;255;3;0;9;TSP:MSG:SEND 0-0-100-100 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=ok:0
                    0;255;3;0;9;TSP:SANCHK:OK
                    

                    debug node

                    Starting sensor (RNNNA-, 2.0.0)
                    TSM:INIT
                    TSM:RADIO:OK
                    TSP:ASSIGNID:OK (ID=100)
                    TSM:FPAR
                    TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                    TSM:FPAR
                    TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                    TSM:FPAR
                    TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                    TSM:FPAR
                    TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                    !TSM:FPAR:FAIL
                    !TSM:FAILURE
                    TSM:PDT
                    TSM:INIT
                    TSM:RADIO:OK
                    TSP:ASSIGNID:OK (ID=100)
                    TSM:FPAR
                    TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                    TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                    TSP:MSG:FPAR RES (ID=0, dist=0)
                    TSP:MSG:PAR OK (ID=0, dist=1)
                    TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                    TSP:MSG:FPAR RES (ID=0, dist=0)
                    TSM:FPAR:OK
                    TSM:ID
                    TSM:CHKID:OK (ID=100)
                    TSM:UPL
                    TSP:PING:SEND (dest=0)
                    !TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=24,pt=1,l=1,sg=0,ft=0,st=fail:1
                    TSP:CHKUPL:FAIL (hops=255)
                    !TSM:UPL:FAIL
                    TSM:FPAR
                    TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                    TSM:FPAR
                    TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                    TSM:FPAR
                    TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                    TSM:FPAR
                    TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                    !TSM:FPAR:FAIL
                    !TSM:FAILURE
                    TSM:PDT
                    

                    I'm really frustrated that it does not work correctly yet I applied literally your sugestions

                    tekkaT 1 Reply Last reply
                    0
                    • Pictor LallemandP Pictor Lallemand

                      i add 22uF capacitor to node and GW

                      debug gw

                      0;255;3;0;9;Starting gateway (RNNGA-, 2.0.0)
                      0;255;3;0;9;TSM:INIT
                      0;255;3;0;9;TSM:RADIO:OK
                      0;255;3;0;9;TSM:GW MODE
                      0;255;3;0;9;TSM:READY
                      0;255;3;0;14;Gateway startup complete.
                      0;255;0;0;18;2.0.0
                      0;255;3;0;9;No registration required
                      0;255;3;0;9;Init complete, id=0, parent=0, distance=0, registration=1
                      0;255;3;0;9;TSP:MSG:READ 100-100-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
                      0;255;3;0;9;TSP:MSG:BC
                      0;255;3;0;9;TSP:MSG:FPAR REQ (sender=100)
                      0;255;3;0;9;TSP:CHKUPL:OK
                      0;255;3;0;9;TSP:MSG:GWL OK
                      0;255;3;0;9;TSP:MSG:SEND 0-0-100-100 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=ok:0
                      0;255;3;0;9;TSP:MSG:READ 100-100-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
                      0;255;3;0;9;TSP:MSG:BC
                      0;255;3;0;9;TSP:MSG:FPAR REQ (sender=100)
                      0;255;3;0;9;TSP:CHKUPL:OK (FLDCTRL)
                      0;255;3;0;9;TSP:MSG:GWL OK
                      0;255;3;0;9;TSP:MSG:SEND 0-0-100-100 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=ok:0
                      0;255;3;0;9;TSP:MSG:READ 100-100-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
                      0;255;3;0;9;TSP:MSG:BC
                      0;255;3;0;9;TSP:MSG:FPAR REQ (sender=100)
                      0;255;3;0;9;TSP:CHKUPL:OK
                      0;255;3;0;9;TSP:MSG:GWL OK
                      0;255;3;0;9;TSP:MSG:SEND 0-0-100-100 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=ok:0
                      0;255;3;0;9;TSP:MSG:READ 100-100-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
                      0;255;3;0;9;TSP:MSG:BC
                      0;255;3;0;9;TSP:MSG:FPAR REQ (sender=100)
                      0;255;3;0;9;TSP:CHKUPL:OK (FLDCTRL)
                      0;255;3;0;9;TSP:MSG:GWL OK
                      0;255;3;0;9;TSP:MSG:SEND 0-0-100-100 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=ok:0
                      0;255;3;0;9;TSP:SANCHK:OK
                      

                      debug node

                      Starting sensor (RNNNA-, 2.0.0)
                      TSM:INIT
                      TSM:RADIO:OK
                      TSP:ASSIGNID:OK (ID=100)
                      TSM:FPAR
                      TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                      TSM:FPAR
                      TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                      TSM:FPAR
                      TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                      TSM:FPAR
                      TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                      !TSM:FPAR:FAIL
                      !TSM:FAILURE
                      TSM:PDT
                      TSM:INIT
                      TSM:RADIO:OK
                      TSP:ASSIGNID:OK (ID=100)
                      TSM:FPAR
                      TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                      TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                      TSP:MSG:FPAR RES (ID=0, dist=0)
                      TSP:MSG:PAR OK (ID=0, dist=1)
                      TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                      TSP:MSG:FPAR RES (ID=0, dist=0)
                      TSM:FPAR:OK
                      TSM:ID
                      TSM:CHKID:OK (ID=100)
                      TSM:UPL
                      TSP:PING:SEND (dest=0)
                      !TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=24,pt=1,l=1,sg=0,ft=0,st=fail:1
                      TSP:CHKUPL:FAIL (hops=255)
                      !TSM:UPL:FAIL
                      TSM:FPAR
                      TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                      TSM:FPAR
                      TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                      TSM:FPAR
                      TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                      TSM:FPAR
                      TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                      !TSM:FPAR:FAIL
                      !TSM:FAILURE
                      TSM:PDT
                      

                      I'm really frustrated that it does not work correctly yet I applied literally your sugestions

                      tekkaT Offline
                      tekkaT Offline
                      tekka
                      Admin
                      wrote on last edited by
                      #25

                      @Pictor-Lallemand ok, now next step: substitute all caps to 100uF (or if not available add a second 22uF in parallel). Please test and upload the same logs again. How do you power your nodes?

                      1 Reply Last reply
                      0
                      • Pictor LallemandP Offline
                        Pictor LallemandP Offline
                        Pictor Lallemand
                        wrote on last edited by
                        #26

                        i add 2 capacitors of 22uf in serie the gateway is powered by my laptop
                        the node is powered by my laptop for use serial debug

                        debug node

                        Starting sensor (RNNNA-, 2.0.0)
                        TSM:INIT
                        TSM:RADIO:OK
                        TSP:ASSIGNID:OK (ID=100)
                        TSM:FPAR
                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                        TSM:FPAR
                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                        TSM:FPAR
                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                        TSM:FPAR
                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                        !TSM:FPAR:FAIL
                        !TSM:FAILURE
                        TSM:PDT
                        TSM:INIT
                        TSM:RADIO:OK
                        TSP:ASSIGNID:OK (ID=100)
                        TSM:FPAR
                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                        TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                        TSP:MSG:FPAR RES (ID=0, dist=0)
                        TSP:MSG:PAR OK (ID=0, dist=1)
                        TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                        TSP:MSG:FPAR RES (ID=0, dist=0)
                        TSM:FPAR:OK
                        TSM:ID
                        TSM:CHKID:OK (ID=100)
                        TSM:UPL
                        TSP:PING:SEND (dest=0)
                        !TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=24,pt=1,l=1,sg=0,ft=0,st=fail:1
                        TSP:CHKUPL:FAIL (hops=255)
                        !TSM:UPL:FAIL
                        TSM:FPAR
                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                        TSM:FPAR
                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                        TSM:FPAR
                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                        TSM:FPAR
                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                        !TSM:FPAR:FAIL
                        !TSM:FAILURE
                        TSM:PDT
                        TSM:INIT
                        TSM:RADIO:OK
                        TSP:ASSIGNID:OK (ID=100)
                        TSM:FPAR
                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                        TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                        TSP:MSG:FPAR RES (ID=0, dist=0)
                        TSP:MSG:PAR OK (ID=0, dist=1)
                        TSM:FPAR:OK
                        TSM:ID
                        TSM:CHKID:OK (ID=100)
                        TSM:UPL
                        TSP:PING:SEND (dest=0)
                        !TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=24,pt=1,l=1,sg=0,ft=0,st=fail:1
                        TSP:CHKUPL:FAIL (hops=255)
                        !TSM:UPL:FAIL
                        TSM:FPAR
                        TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                        

                        gw debug

                        0;255;3;0;9;Starting gateway (RNNGA-, 2.0.0)
                        0;255;3;0;9;TSM:INIT
                        0;255;3;0;9;TSM:RADIO:OK
                        0;255;3;0;9;TSM:GW MODE
                        0;255;3;0;9;TSM:READY
                        0;255;3;0;14;Gateway startup complete.
                        0;255;0;0;18;2.0.0
                        0;255;3;0;9;No registration required
                        0;255;3;0;9;Init complete, id=0, parent=0, distance=0, registration=1
                        0;255;3;0;9;TSP:MSG:READ 100-100-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
                        0;255;3;0;9;TSP:MSG:BC
                        0;255;3;0;9;TSP:MSG:FPAR REQ (sender=100)
                        0;255;3;0;9;TSP:CHKUPL:OK (FLDCTRL)
                        0;255;3;0;9;TSP:MSG:GWL OK
                        0;255;3;0;9;TSP:MSG:SEND 0-0-100-100 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=ok:0
                        0;255;3;0;9;TSP:MSG:READ 100-100-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
                        0;255;3;0;9;TSP:MSG:BC
                        0;255;3;0;9;TSP:MSG:FPAR REQ (sender=100)
                        0;255;3;0;9;TSP:CHKUPL:OK (FLDCTRL)
                        0;255;3;0;9;TSP:MSG:GWL OK
                        0;255;3;0;9;TSP:MSG:SEND 0-0-100-100 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=ok:0
                        0;255;3;0;9;TSP:MSG:READ 100-100-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
                        0;255;3;0;9;TSP:MSG:BC
                        0;255;3;0;9;TSP:MSG:FPAR REQ (sender=100)
                        0;255;3;0;9;TSP:CHKUPL:OK
                        0;255;3;0;9;TSP:MSG:GWL OK
                        0;255;3;0;9;TSP:MSG:SEND 0-0-100-100 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=ok:0
                        0;255;3;0;9;TSP:MSG:READ 100-100-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
                        0;255;3;0;9;TSP:MSG:BC
                        0;255;3;0;9;TSP:MSG:FPAR REQ (sender=100)
                        0;255;3;0;9;TSP:CHKUPL:OK (FLDCTRL)
                        0;255;3;0;9;TSP:MSG:GWL OK
                        0;255;3;0;9;TSP:MSG:SEND 0-0-100-100 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=ok:0
                        0;255;3;0;9;TSP:SANCHK:OK
                        

                        Thank you for your support

                        tekkaT 1 Reply Last reply
                        0
                        • Pictor LallemandP Pictor Lallemand

                          i add 2 capacitors of 22uf in serie the gateway is powered by my laptop
                          the node is powered by my laptop for use serial debug

                          debug node

                          Starting sensor (RNNNA-, 2.0.0)
                          TSM:INIT
                          TSM:RADIO:OK
                          TSP:ASSIGNID:OK (ID=100)
                          TSM:FPAR
                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                          TSM:FPAR
                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                          TSM:FPAR
                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                          TSM:FPAR
                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                          !TSM:FPAR:FAIL
                          !TSM:FAILURE
                          TSM:PDT
                          TSM:INIT
                          TSM:RADIO:OK
                          TSP:ASSIGNID:OK (ID=100)
                          TSM:FPAR
                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                          TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                          TSP:MSG:FPAR RES (ID=0, dist=0)
                          TSP:MSG:PAR OK (ID=0, dist=1)
                          TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                          TSP:MSG:FPAR RES (ID=0, dist=0)
                          TSM:FPAR:OK
                          TSM:ID
                          TSM:CHKID:OK (ID=100)
                          TSM:UPL
                          TSP:PING:SEND (dest=0)
                          !TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=24,pt=1,l=1,sg=0,ft=0,st=fail:1
                          TSP:CHKUPL:FAIL (hops=255)
                          !TSM:UPL:FAIL
                          TSM:FPAR
                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                          TSM:FPAR
                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                          TSM:FPAR
                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                          TSM:FPAR
                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                          !TSM:FPAR:FAIL
                          !TSM:FAILURE
                          TSM:PDT
                          TSM:INIT
                          TSM:RADIO:OK
                          TSP:ASSIGNID:OK (ID=100)
                          TSM:FPAR
                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                          TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                          TSP:MSG:FPAR RES (ID=0, dist=0)
                          TSP:MSG:PAR OK (ID=0, dist=1)
                          TSM:FPAR:OK
                          TSM:ID
                          TSM:CHKID:OK (ID=100)
                          TSM:UPL
                          TSP:PING:SEND (dest=0)
                          !TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=24,pt=1,l=1,sg=0,ft=0,st=fail:1
                          TSP:CHKUPL:FAIL (hops=255)
                          !TSM:UPL:FAIL
                          TSM:FPAR
                          TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                          

                          gw debug

                          0;255;3;0;9;Starting gateway (RNNGA-, 2.0.0)
                          0;255;3;0;9;TSM:INIT
                          0;255;3;0;9;TSM:RADIO:OK
                          0;255;3;0;9;TSM:GW MODE
                          0;255;3;0;9;TSM:READY
                          0;255;3;0;14;Gateway startup complete.
                          0;255;0;0;18;2.0.0
                          0;255;3;0;9;No registration required
                          0;255;3;0;9;Init complete, id=0, parent=0, distance=0, registration=1
                          0;255;3;0;9;TSP:MSG:READ 100-100-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
                          0;255;3;0;9;TSP:MSG:BC
                          0;255;3;0;9;TSP:MSG:FPAR REQ (sender=100)
                          0;255;3;0;9;TSP:CHKUPL:OK (FLDCTRL)
                          0;255;3;0;9;TSP:MSG:GWL OK
                          0;255;3;0;9;TSP:MSG:SEND 0-0-100-100 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=ok:0
                          0;255;3;0;9;TSP:MSG:READ 100-100-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
                          0;255;3;0;9;TSP:MSG:BC
                          0;255;3;0;9;TSP:MSG:FPAR REQ (sender=100)
                          0;255;3;0;9;TSP:CHKUPL:OK (FLDCTRL)
                          0;255;3;0;9;TSP:MSG:GWL OK
                          0;255;3;0;9;TSP:MSG:SEND 0-0-100-100 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=ok:0
                          0;255;3;0;9;TSP:MSG:READ 100-100-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
                          0;255;3;0;9;TSP:MSG:BC
                          0;255;3;0;9;TSP:MSG:FPAR REQ (sender=100)
                          0;255;3;0;9;TSP:CHKUPL:OK
                          0;255;3;0;9;TSP:MSG:GWL OK
                          0;255;3;0;9;TSP:MSG:SEND 0-0-100-100 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=ok:0
                          0;255;3;0;9;TSP:MSG:READ 100-100-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
                          0;255;3;0;9;TSP:MSG:BC
                          0;255;3;0;9;TSP:MSG:FPAR REQ (sender=100)
                          0;255;3;0;9;TSP:CHKUPL:OK (FLDCTRL)
                          0;255;3;0;9;TSP:MSG:GWL OK
                          0;255;3;0;9;TSP:MSG:SEND 0-0-100-100 s=255,c=3,t=8,pt=1,l=1,sg=0,ft=0,st=ok:0
                          0;255;3;0;9;TSP:SANCHK:OK
                          

                          Thank you for your support

                          tekkaT Offline
                          tekkaT Offline
                          tekka
                          Admin
                          wrote on last edited by tekka
                          #27

                          @Pictor-Lallemand Did you add the 22uF caps in parallel or in series? In parallel you get 44uF, in series ~11uF...

                          Pictor LallemandP 1 Reply Last reply
                          0
                          • tekkaT tekka

                            @Pictor-Lallemand Did you add the 22uF caps in parallel or in series? In parallel you get 44uF, in series ~11uF...

                            Pictor LallemandP Offline
                            Pictor LallemandP Offline
                            Pictor Lallemand
                            wrote on last edited by
                            #28

                            @tekka in parallel

                            tekkaT 1 Reply Last reply
                            0
                            • Pictor LallemandP Pictor Lallemand

                              @tekka in parallel

                              tekkaT Offline
                              tekkaT Offline
                              tekka
                              Admin
                              wrote on last edited by
                              #29

                              @Pictor-Lallemand ok, then try putting them further away and/or decrease TX_POWER for both nodes by setting

                              #define MY_RF24_PA_LEVEL RF24_PA_LOW
                              
                              Pictor LallemandP 1 Reply Last reply
                              0
                              • tekkaT tekka

                                @Pictor-Lallemand ok, then try putting them further away and/or decrease TX_POWER for both nodes by setting

                                #define MY_RF24_PA_LEVEL RF24_PA_LOW
                                
                                Pictor LallemandP Offline
                                Pictor LallemandP Offline
                                Pictor Lallemand
                                wrote on last edited by
                                #30

                                @tekka I just try not conclusive

                                Starting sensor (RNNNA-, 2.0.0)
                                TSM:INIT
                                TSM:RADIO:OK
                                TSP:ASSIGNID:OK (ID=100)
                                TSM:FPAR
                                TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                TSM:FPAR
                                TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                TSM:FPAR
                                TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                TSM:FPAR
                                TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                !TSM:FPAR:FAIL
                                !TSM:FAILURE
                                TSM:PDT
                                TSM:INIT
                                TSM:RADIO:OK
                                TSP:ASSIGNID:OK (ID=100)
                                TSM:FPAR
                                TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                                TSP:MSG:FPAR RES (ID=0, dist=0)
                                TSP:MSG:PAR OK (ID=0, dist=1)
                                TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                                TSP:MSG:FPAR RES (ID=0, dist=0)
                                TSM:FPAR:OK
                                TSM:ID
                                TSM:CHKID:OK (ID=100)
                                TSM:UPL
                                TSP:PING:SEND (dest=0)
                                !TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=24,pt=1,l=1,sg=0,ft=0,st=fail:1
                                TSP:CHKUPL:FAIL (hops=255)
                                !TSM:UPL:FAIL
                                TSM:FPAR
                                TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                TSM:FPAR
                                TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                TSM:FPAR
                                TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                TSM:FPAR
                                

                                an idea ?

                                tekkaT 1 Reply Last reply
                                0
                                • Pictor LallemandP Pictor Lallemand

                                  @tekka I just try not conclusive

                                  Starting sensor (RNNNA-, 2.0.0)
                                  TSM:INIT
                                  TSM:RADIO:OK
                                  TSP:ASSIGNID:OK (ID=100)
                                  TSM:FPAR
                                  TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                  TSM:FPAR
                                  TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                  TSM:FPAR
                                  TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                  TSM:FPAR
                                  TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                  !TSM:FPAR:FAIL
                                  !TSM:FAILURE
                                  TSM:PDT
                                  TSM:INIT
                                  TSM:RADIO:OK
                                  TSP:ASSIGNID:OK (ID=100)
                                  TSM:FPAR
                                  TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                  TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                                  TSP:MSG:FPAR RES (ID=0, dist=0)
                                  TSP:MSG:PAR OK (ID=0, dist=1)
                                  TSP:MSG:READ 0-0-100 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                                  TSP:MSG:FPAR RES (ID=0, dist=0)
                                  TSM:FPAR:OK
                                  TSM:ID
                                  TSM:CHKID:OK (ID=100)
                                  TSM:UPL
                                  TSP:PING:SEND (dest=0)
                                  !TSP:MSG:SEND 100-100-0-0 s=255,c=3,t=24,pt=1,l=1,sg=0,ft=0,st=fail:1
                                  TSP:CHKUPL:FAIL (hops=255)
                                  !TSM:UPL:FAIL
                                  TSM:FPAR
                                  TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                  TSM:FPAR
                                  TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                  TSM:FPAR
                                  TSP:MSG:SEND 100-100-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=bc:
                                  TSM:FPAR
                                  

                                  an idea ?

                                  tekkaT Offline
                                  tekkaT Offline
                                  tekka
                                  Admin
                                  wrote on last edited by tekka
                                  #31

                                  @Pictor-Lallemand Looks to me like power issue and/or radio interference. If you have 100uF or larger caps, try replacing them. Also, is there a WiFi AP nearby?

                                  Pictor LallemandP 1 Reply Last reply
                                  0
                                  • tekkaT tekka

                                    @Pictor-Lallemand Looks to me like power issue and/or radio interference. If you have 100uF or larger caps, try replacing them. Also, is there a WiFi AP nearby?

                                    Pictor LallemandP Offline
                                    Pictor LallemandP Offline
                                    Pictor Lallemand
                                    wrote on last edited by
                                    #32

                                    @tekka it is always the same worries I added capacitors 330uF no wifi point naarby

                                    tekkaT 1 Reply Last reply
                                    0
                                    • Pictor LallemandP Pictor Lallemand

                                      @tekka it is always the same worries I added capacitors 330uF no wifi point naarby

                                      tekkaT Offline
                                      tekkaT Offline
                                      tekka
                                      Admin
                                      wrote on last edited by
                                      #33

                                      @Pictor-Lallemand What HW are you using & frequency?

                                      Pictor LallemandP 1 Reply Last reply
                                      0
                                      • tekkaT tekka

                                        @Pictor-Lallemand What HW are you using & frequency?

                                        Pictor LallemandP Offline
                                        Pictor LallemandP Offline
                                        Pictor Lallemand
                                        wrote on last edited by
                                        #34

                                        @tekka What is the HW?

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

                                          @Pictor-Lallemand
                                          HW= hardware ;) FW for firmware or SW software
                                          that's weird you're not lucky on this, I agree with tekka it looks like hardware issue..Perhaps you could try to replace your usb cable, not sure but who knows, or maybe some bad dupont cable too (try with some other). I have already seen bad usb or dupont cables so...or maybe try with another radio module.

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


                                          18

                                          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