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. OpenHardware.io
  3. 💬 NodeManager

💬 NodeManager

Scheduled Pinned Locked Moved OpenHardware.io
contest2017arduinonewbiemysensorsbattery sensor
196 Posts 42 Posters 67.4k Views 41 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.
  • U Offline
    U Offline
    user2684
    Contest Winner
    wrote on last edited by
    #105

    Hello All,

    NodeManager v1.6 is finally available! Download and upgrade instructions can be found as always on https://github.com/mysensors/NodeManager

    First of all I want to thank everybody contributing to the project, especially those who have submitted pull requests to the repository.

    In v1.6 we have 36 out-of-the-box sensors as well as a good number fixes and enhancements. The most notable are for sure the capability to customize any sensor remotely through a brand new remote API and a more flexible and effective way to configure reporting intervals and sleep cycles:

    • Introduced new remote API to allow calling almost ALL NodeManager's and its sensors' functions remotely
    • Reporting interval configuration is now indipendent from the sleep cycle
    • Reporting interval can be customized per-sensor
    • All intervals (measure/battery reports) are now time-based
    • Added support for BMP280 temperature and pressure sensor
    • Added support for RS485 serial transport
    • Added support for TSL2561 light sensor
    • Added support for DHT21 temperature/humidity sensor
    • Added support for AM2320 temperature/humidity sensor
    • Added support for PT100 high temperature sensor
    • Added support for MH-Z19 CO2 sensor
    • Added support for analog rain and soil moisture sensors
    • Added support for generic dimmer sensor (PWM output)
    • Added support for power and water meter pulse sensors
    • Radio signal level (RSSI) is now reported automatically like the battery level
    • SensorRainGauge now supports sleep mode
    • SensorSwitch now supports awake mode
    • SensorLatchingRealy now handles automatically both on and off commands
    • SensorMQ now depends on its own module
    • Added safeguard (automatic off) to SensorDigitalOutput
    • Any sensor can now access all NodeManager's functions
    • DHT sensor now using MySensors' DHT library

    For those who have previously forked the repository, please ensure to merge the updated development branch first before submitting any new PR.

    Thanks!

    1 Reply Last reply
    2
    • V Offline
      V Offline
      vikasjee
      wrote on last edited by
      #106
      This post is deleted!
      1 Reply Last reply
      0
      • G Offline
        G Offline
        graham86
        wrote on last edited by
        #107

        Hi, obviously a lot of work gone into NodeManager thanks, I'm quite new to MySensors but have started working on.a few sensors around my home.

        I was just looking through the code (NodeManager.cpp) and an apparent issue jumped out at me (I write C++ for a living on very large boxes but still worry about performance!)
        The two functions NodeManager::_saveConfig and NodeManager::_loadConfig are used to save the _sleep_time value to EEPROM. The code splits the long value into 3 parts by dividing by successively 255 . On loading the value is reconstructed by multiplying by 255.
        I'm pretty sure that you meant to use 256 to split the long value into three independent bytes to store.
        Dividing or multiplying by 255 is potentially expensive whereas dividing or multiplying by 256 is much faster simply requiring shifts.
        The normal code for splitting a long value into individual bytes would be something like
        uint8_t byte0 = _sleep_time & 0xff; // compiler should generate a simple byte load
        uint8_t byte1 = (_sleep_time >> 8 ) & 0xff; // compiler should still generate a simple byte load from the second byte of _sleep_time
        uint8_t byte2 = (_sleep_time >> 16) & 0xff; // as before should still be a byte load.
        I'm not sure how good the gcc optimiser is for the AVR code but, putting the shift&mask operations directly into the calls of saveSave(...) may avoid having to allocate local variables as in
        // save the 3 bits
        saveState(EEPROM_SLEEP_SAVED,1);
        saveState(EEPROM_SLEEP_1,_sleep_time & 0xff);
        saveState(EEPROM_SLEEP_2,(_sleep_time >> 8 ) & 0xff);
        saveState(EEPROM_SLEEP_3, (_sleep_time >> 16) & 0xff);

        I am not an expert in in the AVR architecture or instruction set so maybe there is a good reason why you are using 255 instead of 256 - it just seems strange!

        Regards

        Graham

        U 1 Reply Last reply
        2
        • F Offline
          F Offline
          FredRoot
          wrote on last edited by
          #108

          Hi,
          I have started to play with nodemanager and I have registered a SENSOR_DS18B20. Nodemanager handles all the heavy lifting and the sensor is reporting the temperature 100%. I can change the sleep and report intervals with “setReportIntervalSeconds and setSleepSeconds”.

          Question 1:
          According to the MySensors documentation (https://www.mysensors.org/download/serial_api_20#variable-types) a S_TEMP sensor can report the V_TEMP value and a V_ID value. Nodemanager populates the V_TEMP variable, but how can I populate and send the V_ID value?
          Question2:
          If I want to add an additional sensor I must register it with “registerSensor” and I would set the report interval for this sensor by getting a pointer to this sensor with “getSensor”, but how do I add custom code for this sensor in Loop()? How do I ensure that the custom code is only executed for this sensor and not for the other sensor?

          U 1 Reply Last reply
          0
          • V Offline
            V Offline
            vikasjee
            wrote on last edited by vikasjee
            #109

            @user2684, Will you like to consider adding a #DEFINE to let user configure PowerOn function to select "GND-On" or "Vcc-On" (5V0)?

            With this GND-On PowerOn, a single GND wire controlled by a digital pin can control the power instead of 2 wire poweron control. [so many control words :)]

            For devices that require more than ~10mA current (~Arduino pin current) this GND-On configuration can help externally supplied higher powered V+ current to switch the devices! Thus, will also help 3V3 devices to be controlled by PowerOn, of course, with external 3V3!

            U 1 Reply Last reply
            0
            • K Offline
              K Offline
              kted
              wrote on last edited by
              #110

              I just started using NodeManager, mainly for the ability to send settings to the node.
              I started with a plain analog (Voltage) sensor, and it works just fine. But I cannot make a DS18B20 sensor to send any temperature data. It registers on the gateway, and that's it.
              I have enabled the DS18B20 module in the config.h.
              This is the code in the sketch:

                /*
                 * Register below your sensors
                */
                nodeManager.setSleepSeconds(10);
                nodeManager.setReportIntervalSeconds(10);
                int temp = nodeManager.registerSensor(SENSOR_DS18B20);
                 /*
                 * Register above your sensors
                */
              

              Am I missing something?

              U 1 Reply Last reply
              0
              • G graham86

                Hi, obviously a lot of work gone into NodeManager thanks, I'm quite new to MySensors but have started working on.a few sensors around my home.

                I was just looking through the code (NodeManager.cpp) and an apparent issue jumped out at me (I write C++ for a living on very large boxes but still worry about performance!)
                The two functions NodeManager::_saveConfig and NodeManager::_loadConfig are used to save the _sleep_time value to EEPROM. The code splits the long value into 3 parts by dividing by successively 255 . On loading the value is reconstructed by multiplying by 255.
                I'm pretty sure that you meant to use 256 to split the long value into three independent bytes to store.
                Dividing or multiplying by 255 is potentially expensive whereas dividing or multiplying by 256 is much faster simply requiring shifts.
                The normal code for splitting a long value into individual bytes would be something like
                uint8_t byte0 = _sleep_time & 0xff; // compiler should generate a simple byte load
                uint8_t byte1 = (_sleep_time >> 8 ) & 0xff; // compiler should still generate a simple byte load from the second byte of _sleep_time
                uint8_t byte2 = (_sleep_time >> 16) & 0xff; // as before should still be a byte load.
                I'm not sure how good the gcc optimiser is for the AVR code but, putting the shift&mask operations directly into the calls of saveSave(...) may avoid having to allocate local variables as in
                // save the 3 bits
                saveState(EEPROM_SLEEP_SAVED,1);
                saveState(EEPROM_SLEEP_1,_sleep_time & 0xff);
                saveState(EEPROM_SLEEP_2,(_sleep_time >> 8 ) & 0xff);
                saveState(EEPROM_SLEEP_3, (_sleep_time >> 16) & 0xff);

                I am not an expert in in the AVR architecture or instruction set so maybe there is a good reason why you are using 255 instead of 256 - it just seems strange!

                Regards

                Graham

                U Offline
                U Offline
                user2684
                Contest Winner
                wrote on last edited by
                #111

                @graham86 there was no special reason why I used 255 apart from my lack of c++ knowledge :P Thanks for the hit, I'll fix it with https://github.com/mysensors/NodeManager/issues/215

                1 Reply Last reply
                0
                • F FredRoot

                  Hi,
                  I have started to play with nodemanager and I have registered a SENSOR_DS18B20. Nodemanager handles all the heavy lifting and the sensor is reporting the temperature 100%. I can change the sleep and report intervals with “setReportIntervalSeconds and setSleepSeconds”.

                  Question 1:
                  According to the MySensors documentation (https://www.mysensors.org/download/serial_api_20#variable-types) a S_TEMP sensor can report the V_TEMP value and a V_ID value. Nodemanager populates the V_TEMP variable, but how can I populate and send the V_ID value?
                  Question2:
                  If I want to add an additional sensor I must register it with “registerSensor” and I would set the report interval for this sensor by getting a pointer to this sensor with “getSensor”, but how do I add custom code for this sensor in Loop()? How do I ensure that the custom code is only executed for this sensor and not for the other sensor?

                  U Offline
                  U Offline
                  user2684
                  Contest Winner
                  wrote on last edited by
                  #112

                  Hi @FredRoot, V_ID has not been used so far by NodeManager, thanks for noticing it! I've added https://github.com/mysensors/NodeManager/issues/216 for this

                  Regarding the other question you have two ways: 1) add your custom code to onLoop() in NodeManager.cpp (this will not survive to an upgrade) 2) create a custom sensor inheriting from Sensor or other subclasses and call registerSensor() by providing an instance of this class (https://github.com/mysensors/NodeManager#creating-a-custom-sensor)
                  Thanks

                  1 Reply Last reply
                  0
                  • V vikasjee

                    @user2684, Will you like to consider adding a #DEFINE to let user configure PowerOn function to select "GND-On" or "Vcc-On" (5V0)?

                    With this GND-On PowerOn, a single GND wire controlled by a digital pin can control the power instead of 2 wire poweron control. [so many control words :)]

                    For devices that require more than ~10mA current (~Arduino pin current) this GND-On configuration can help externally supplied higher powered V+ current to switch the devices! Thus, will also help 3V3 devices to be controlled by PowerOn, of course, with external 3V3!

                    U Offline
                    U Offline
                    user2684
                    Contest Winner
                    wrote on last edited by
                    #113

                    @vikasjee sorry my bad, I think I couldn't understand your suggestion :) Do you have an example to let me understand better? thanks and sorry again, I'm sure I'm missing something somewhere :)

                    V 1 Reply Last reply
                    0
                    • K kted

                      I just started using NodeManager, mainly for the ability to send settings to the node.
                      I started with a plain analog (Voltage) sensor, and it works just fine. But I cannot make a DS18B20 sensor to send any temperature data. It registers on the gateway, and that's it.
                      I have enabled the DS18B20 module in the config.h.
                      This is the code in the sketch:

                        /*
                         * Register below your sensors
                        */
                        nodeManager.setSleepSeconds(10);
                        nodeManager.setReportIntervalSeconds(10);
                        int temp = nodeManager.registerSensor(SENSOR_DS18B20);
                         /*
                         * Register above your sensors
                        */
                      

                      Am I missing something?

                      U Offline
                      U Offline
                      user2684
                      Contest Winner
                      wrote on last edited by
                      #114

                      @kted I think you forgot the pin to which the sensor is attached to. e.g.

                      nodeManager.registerSensor(SENSOR_DS18B20,6);
                      
                      K 1 Reply Last reply
                      0
                      • U user2684

                        @kted I think you forgot the pin to which the sensor is attached to. e.g.

                        nodeManager.registerSensor(SENSOR_DS18B20,6);
                        
                        K Offline
                        K Offline
                        kted
                        wrote on last edited by
                        #115

                        @user2684 Actually, you are right. Thank you.
                        But shouldn't the compiler throw an error?

                        Now to the hard part: How to send the actual command from Domoticz, for example to change the sleep duration...

                        Sergio RiusS U 2 Replies Last reply
                        0
                        • K kted

                          @user2684 Actually, you are right. Thank you.
                          But shouldn't the compiler throw an error?

                          Now to the hard part: How to send the actual command from Domoticz, for example to change the sleep duration...

                          Sergio RiusS Offline
                          Sergio RiusS Offline
                          Sergio Rius
                          wrote on last edited by
                          #116

                          @kted Such functionality it's supposed to be hard-coded in the node sketch. But if you want to make it modificable from Domoticz, perhaps you can make use of the V_VAR1-3 variables and modify them in domoticz, receive them in the node and pass to NodeManager.

                          1 Reply Last reply
                          0
                          • K kted

                            @user2684 Actually, you are right. Thank you.
                            But shouldn't the compiler throw an error?

                            Now to the hard part: How to send the actual command from Domoticz, for example to change the sleep duration...

                            U Offline
                            U Offline
                            user2684
                            Contest Winner
                            wrote on last edited by
                            #117

                            @kted the compiler doesn't complain because for some sensors (e.g. those using i2c), the pin is not required so I made it not mandatory. As for Domoticz, I'll let others to address your question since I don't know that controller enough. Thanks

                            1 Reply Last reply
                            0
                            • G Offline
                              G Offline
                              graham86
                              wrote on last edited by
                              #118

                              @user2684 I have looked at the changes in https://github.com/mysensors/NodeManager/pull/174 which incorporates an alternative improved implementation for the _LoadConfig/_SaveConfig functions (interesting that using an intermediate union requires less code than my shifting version- presumably due to differences in the way the GCC optimiser works for an AVR target).
                              I spotted a coupld of minor points and was also able to further reduce the code size.
                              Firstly as we are writing C++ rather than C the declaration of the union should just be
                              // Local union used to split _sleep_time into bytes
                              union tLongByteArrayCombo{
                              long long_value;
                              uint8_t byte_array[4];
                              } ;
                              (The typedef systax, although valid C++ is unnecessary - a simple union declaration is sufficient.)
                              There is also a typo - the original had a member called byte_arrray instead of byte_array.

                              You can also save 24 bytes of code by avoiding the use of a local union variable and simply aliasing _sleep_time as the union type. So instead of _load_config doing -
                              tLongByteArrayCombo c;
                              c.byte_array[0] = loadState(EEPROM_SLEEP_1);
                              c.byte_array[1] = loadState(EEPROM_SLEEP_2);
                              c.byte_array[2] = loadState(EEPROM_SLEEP_3);
                              c.byte_array[3] = 0;
                              _sleep_time = c.long_value;
                              You can do
                              (((tLongByteArrayCombo&)_sleep_time).byte_array )[0] = loadState(EEPROM_SLEEP_1);
                              (((tLongByteArrayCombo&)_sleep_time).byte_array )[1] = loadState(EEPROM_SLEEP_2);
                              (((tLongByteArrayCombo&)_sleep_time).byte_array )[2] = loadState(EEPROM_SLEEP_3);
                              (((tLongByteArrayCombo&)_sleep_time).byte_array )[3] = 0;
                              And in _save_config instead of
                              tLongByteArrayCombo c;
                              c.long_value = _sleep_time;
                              saveState(EEPROM_SLEEP_1, c.byte_array[0]);
                              saveState(EEPROM_SLEEP_2, c.byte_array[1]);
                              saveState(EEPROM_SLEEP_3, c.byte_array[2]);
                              you can use
                              saveState(EEPROM_SLEEP_1, (((tLongByteArrayCombo&)_sleep_time).byte_array )[0] );
                              saveState(EEPROM_SLEEP_2, (((tLongByteArrayCombo&)_sleep_time).byte_array )[1] );
                              saveState(EEPROM_SLEEP_3, (((tLongByteArrayCombo&)_sleep_time).byte_array )[2] );

                              In my specific sample sketch I had the following code sizes

                              Original NodeManager.cpp 28242 Bytes
                              NodeManager with patch from pull rq 174 - 28154 Bytes (saving of 88 Bytes of code(
                              Patched NodeManager with additional changes above - 28130 Bytes ( saving another 24 Bytes of code)

                              U 1 Reply Last reply
                              0
                              • G graham86

                                @user2684 I have looked at the changes in https://github.com/mysensors/NodeManager/pull/174 which incorporates an alternative improved implementation for the _LoadConfig/_SaveConfig functions (interesting that using an intermediate union requires less code than my shifting version- presumably due to differences in the way the GCC optimiser works for an AVR target).
                                I spotted a coupld of minor points and was also able to further reduce the code size.
                                Firstly as we are writing C++ rather than C the declaration of the union should just be
                                // Local union used to split _sleep_time into bytes
                                union tLongByteArrayCombo{
                                long long_value;
                                uint8_t byte_array[4];
                                } ;
                                (The typedef systax, although valid C++ is unnecessary - a simple union declaration is sufficient.)
                                There is also a typo - the original had a member called byte_arrray instead of byte_array.

                                You can also save 24 bytes of code by avoiding the use of a local union variable and simply aliasing _sleep_time as the union type. So instead of _load_config doing -
                                tLongByteArrayCombo c;
                                c.byte_array[0] = loadState(EEPROM_SLEEP_1);
                                c.byte_array[1] = loadState(EEPROM_SLEEP_2);
                                c.byte_array[2] = loadState(EEPROM_SLEEP_3);
                                c.byte_array[3] = 0;
                                _sleep_time = c.long_value;
                                You can do
                                (((tLongByteArrayCombo&)_sleep_time).byte_array )[0] = loadState(EEPROM_SLEEP_1);
                                (((tLongByteArrayCombo&)_sleep_time).byte_array )[1] = loadState(EEPROM_SLEEP_2);
                                (((tLongByteArrayCombo&)_sleep_time).byte_array )[2] = loadState(EEPROM_SLEEP_3);
                                (((tLongByteArrayCombo&)_sleep_time).byte_array )[3] = 0;
                                And in _save_config instead of
                                tLongByteArrayCombo c;
                                c.long_value = _sleep_time;
                                saveState(EEPROM_SLEEP_1, c.byte_array[0]);
                                saveState(EEPROM_SLEEP_2, c.byte_array[1]);
                                saveState(EEPROM_SLEEP_3, c.byte_array[2]);
                                you can use
                                saveState(EEPROM_SLEEP_1, (((tLongByteArrayCombo&)_sleep_time).byte_array )[0] );
                                saveState(EEPROM_SLEEP_2, (((tLongByteArrayCombo&)_sleep_time).byte_array )[1] );
                                saveState(EEPROM_SLEEP_3, (((tLongByteArrayCombo&)_sleep_time).byte_array )[2] );

                                In my specific sample sketch I had the following code sizes

                                Original NodeManager.cpp 28242 Bytes
                                NodeManager with patch from pull rq 174 - 28154 Bytes (saving of 88 Bytes of code(
                                Patched NodeManager with additional changes above - 28130 Bytes ( saving another 24 Bytes of code)

                                U Offline
                                U Offline
                                user2684
                                Contest Winner
                                wrote on last edited by
                                #119

                                @graham86 I guess you are referring to https://github.com/mysensors/NodeManager/pull/217, not 174, am I wrong? Anyway, any contribution that would help saving bytes is more than welcome: NodeManager is becoming more and more complex and the situations where we are out of storage start increasing so we definitely need to save whatever wherever we can :-) Regarding what you are proposing above, keep on eye on PR #217; once a new one dedicated to this part of the code will be created as discussed there, feel free to add your own PR to that branch or just let me know and I'll do it for you. Thanks!

                                1 Reply Last reply
                                0
                                • U user2684

                                  @vikasjee sorry my bad, I think I couldn't understand your suggestion :) Do you have an example to let me understand better? thanks and sorry again, I'm sure I'm missing something somewhere :)

                                  V Offline
                                  V Offline
                                  vikasjee
                                  wrote on last edited by vikasjee
                                  #120

                                  @user2684, Sorry, couldn't revert to your query earlier as i was away building a small library.

                                  Expanding onto my earlier post on the requested Power Management feature -
                                  A simple switch will complete a circuit whenever its switched ON. This allows for placing the switch on the ground return wire too. So only a single GND-ON (Switched ON) will complete the circuit (without requiring an additional Vcc-ON switch).

                                  Now, with a developer configured #DEFINE GND_ON_POWER =1 may be checked in NodeManager's PowerManagement functions to DigitalWrite(Digital_GND_ON_Pin, LOW)
                                  for a switchON effect.

                                  Additionally, To provide an extra current to a sensor (i.e. more than a ~10mA-20mA, a max safe current provided by an Arduino pin) an external power source (other than Arduino +5V0 OR +3V3) may be provided by that external power source (of course with with a common ground wire between Arduino and that powersource to complete the circuit.)

                                  Also, with the current 2Wire PowerOn methodology, the VccPowerOn switch can provide only one positive voltage (that provided by Arduino Vcc, say +5V0) but not +3V3 (say) to the sensors. If some attached sensors require the other voltage (+3V3), then, this 2Wire PowerOn method will not help. Whereas, a single GND_On power methodology will still switch the circuit thus managing the Power to those sensors too.
                                  [PS: Signal Voltage Levels will still need to be managed by the developer attaching those sensors to the node]

                                  I think this simple feature will add on to the power of the PowerManagement functions.

                                  Hope this clears some air ? Open to suggestions...

                                  U 1 Reply Last reply
                                  0
                                  • V vikasjee

                                    @user2684, Sorry, couldn't revert to your query earlier as i was away building a small library.

                                    Expanding onto my earlier post on the requested Power Management feature -
                                    A simple switch will complete a circuit whenever its switched ON. This allows for placing the switch on the ground return wire too. So only a single GND-ON (Switched ON) will complete the circuit (without requiring an additional Vcc-ON switch).

                                    Now, with a developer configured #DEFINE GND_ON_POWER =1 may be checked in NodeManager's PowerManagement functions to DigitalWrite(Digital_GND_ON_Pin, LOW)
                                    for a switchON effect.

                                    Additionally, To provide an extra current to a sensor (i.e. more than a ~10mA-20mA, a max safe current provided by an Arduino pin) an external power source (other than Arduino +5V0 OR +3V3) may be provided by that external power source (of course with with a common ground wire between Arduino and that powersource to complete the circuit.)

                                    Also, with the current 2Wire PowerOn methodology, the VccPowerOn switch can provide only one positive voltage (that provided by Arduino Vcc, say +5V0) but not +3V3 (say) to the sensors. If some attached sensors require the other voltage (+3V3), then, this 2Wire PowerOn method will not help. Whereas, a single GND_On power methodology will still switch the circuit thus managing the Power to those sensors too.
                                    [PS: Signal Voltage Levels will still need to be managed by the developer attaching those sensors to the node]

                                    I think this simple feature will add on to the power of the PowerManagement functions.

                                    Hope this clears some air ? Open to suggestions...

                                    U Offline
                                    U Offline
                                    user2684
                                    Contest Winner
                                    wrote on last edited by
                                    #121

                                    @vikasjee thanks all clear now! I'll track this with https://github.com/mysensors/NodeManager/issues/224. Thanks again for the detailed explanation!

                                    1 Reply Last reply
                                    1
                                    • U Offline
                                      U Offline
                                      user2684
                                      Contest Winner
                                      wrote on last edited by
                                      #122

                                      Hello all, just to let you know when compiling against the latest version of the mysensors 2.2.0-beta library, NodeManager will crash on startup, just after presenting the mysensors logo. Thanks @gohan for pointing this out! Root cause is still unknown but when MY_DEBUG is defined, the crash doesn't take place (https://github.com/mysensors/NodeManager/issues/223)

                                      V 1 Reply Last reply
                                      1
                                      • U user2684

                                        Hello all, just to let you know when compiling against the latest version of the mysensors 2.2.0-beta library, NodeManager will crash on startup, just after presenting the mysensors logo. Thanks @gohan for pointing this out! Root cause is still unknown but when MY_DEBUG is defined, the crash doesn't take place (https://github.com/mysensors/NodeManager/issues/223)

                                        V Offline
                                        V Offline
                                        vikasjee
                                        wrote on last edited by
                                        #123

                                        @user2684, Can we have a quick hot fix?

                                        U 1 Reply Last reply
                                        0
                                        • V vikasjee

                                          @user2684, Can we have a quick hot fix?

                                          U Offline
                                          U Offline
                                          user2684
                                          Contest Winner
                                          wrote on last edited by
                                          #124

                                          @vikasjee sure, as soon as I'll be able to understand the reason why it crashes when MY_DEBUG is not defined :-( if somebody from the core team has any hit, would be really appreciated!
                                          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