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. 💬 Easy/Newbie PCB for MySensors

💬 Easy/Newbie PCB for MySensors

Scheduled Pinned Locked Moved OpenHardware.io
mysensorsbatteryeasynewbiepcbmysx
716 Posts 111 Posters 306.2k Views 93 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.
  • M Offline
    M Offline
    Mr_sensor
    wrote on last edited by Mr_sensor
    #499

    @sundberg84 Hi, I soldered a board holding a humidity and temperature sensor. That is working fine and reporting to may gateway (mqtt). Only thing which I do not get working ok is the battery level measurement. As I already posted in an other topic here.

    Here are some pictures of my board. The bat jumper is connected with a wire on the bottom. And the code I use on it right now.
    I already changed the pro mini for a fresh soldered one but still getting the the same result. Just ones giving the volt and % and after that only giving 0 volt as output.
    tried to include delay(500) in the sketch but that did not help. So how to solve this?

    
     
    #define MY_NODE_ID 2
    #define MY_PARENT_NODE_ID 0
    #define MY_PARENT_NODE_IS_STATIC
    
    // Enable debug prints
    #define MY_DEBUG
    
    // Enable and select radio type attached 
    #define MY_RADIO_NRF24
    //#define MY_RADIO_RFM69
    //#define MY_RS485
     
    #include <SparkFunHTU21D.h>
    #include <MySensors.h>  
    #include <Wire.h>
    #include <SPI.h>
    
    // Force sending an update of the temperature after n sensor reads, so a controller showing the
    // timestamp of the last update doesn't show something like 3 hours in the unlikely case, that
    // the value didn't change since;
    // i.e. the sensor would force sending an update every UPDATE_INTERVAL*FORCE_UPDATE_N_READS [ms]
    //static const uint8_t FORCE_UPDATE_N_READS = 10;
    
    #define CHILD_ID_HUM 0
    #define CHILD_ID_TEMP 1
    #define CHILD_ID_BATTERY 2
    //#define CHILD_ID_VOLT 2
    #define CHILD_ID_PRCNT 3
    
    float lastTemp;
    float lastHum;
    
    uint8_t nNoUpdatesTemp;
    uint8_t nNoUpdatesHum;
    boolean metric = true;
    
    
    
    
    void presentation()  
    { 
     // Send the Sketch Version Information to the Gateway                                                                                                                     
      sendSketchInfo("Humidity", "2.0");      
       
     // Register all sensors to gw (they will be created as child devices)                                                                                                     
      present(CHILD_ID_HUM, S_HUM);                                                                                                                                          
      present(CHILD_ID_TEMP, S_TEMP);
       present(CHILD_ID_BATTERY, S_MULTIMETER);                                                                                                                                         
      //metric = getControllerConfig().isMetric;
    
    
       
    }
    
    int BATTERY_SENSE_PIN = A0;  // select the input pin for the battery sense point
                                                                                                                                                      
    unsigned long SLEEP_TIME = 60000; // Sleep time between reads (in milliseconds)                                                                                             
    static int oldBatteryPcnt = 0;                                                                                                                                                                        
                                                                                                                                                                   
                                                                                                                                                                            
    //Create an instance of the object                                                                                                                                          
    HTU21D myHumidity;                                                                                                                                                         
    
                                                                                                                                                                                                                                                                                                                                 
    MyMessage msgHum(CHILD_ID_HUM, V_HUM);                                                                                                                                      
    MyMessage msgTemp(CHILD_ID_TEMP, V_TEMP);                                                                                                                                   
    MyMessage msgBattery(CHILD_ID_BATTERY, V_VOLTAGE);
    //MyMessage msgBattery(CHILD_ID_BATTERY, V_PRCNT);
    
    
    void setup() {
        myHumidity.begin();
    
         // use the 1.1 V internal reference
    #if defined(__AVR_ATmega2560__)
        analogReference(INTERNAL1V1);
    #else
        analogReference(INTERNAL);
    #endif
    
    
    } 
                                                                                                                                                                                                                                                                                                                                                     
    void loop()                                                                                                                                                                 
    {                                                                                                                                                                           
      float temperature = myHumidity.readTemperature();                                                                                                                         
      //if (!metric) {                                                                                                                                                            
      //    temperature = (temperature * 1.8) + 32.0;                                                                                                                             
      //}                                                                                                                                                                         
      send(msgTemp.set(temperature, 1));
      Serial.print("T: ");
      Serial.println(temperature);                                                                                                                                     
    
      float humidity = myHumidity.readHumidity();                                                                                                                               
      send(msgHum.set(humidity, 1));                                                                                                                                         
      Serial.print("H: ");
      Serial.println(humidity);
    
    
       // get the battery Voltage
         
        int sensorValue = analogRead(BATTERY_SENSE_PIN);
        delay(500);
    #ifdef MY_DEBUG
        Serial.println(sensorValue);
    #endif
    
        // 1M, 470K divider across battery and using internal ADC ref of 1.1V
        // Sense point is bypassed with 0.1 uF cap to reduce noise at that point
        // ((1e6+470e3)/470e3)*1.1 = Vmax = 3.44 Volts
        // 3.44/1023 = Volts per bit = 0.003363075
        int batteryPcnt = sensorValue / 10;
    
    #ifdef MY_DEBUG
        float batteryV  = sensorValue * 0.003363075;
        Serial.print("Child ID ");
        Serial.print(CHILD_ID_BATTERY);
        Serial.print("Battery Voltage: ");
        Serial.print(batteryV);
        Serial.println(" V");
    
        Serial.print("Battery Percent: ");
        Serial.print(batteryPcnt);
        Serial.println(" %");
    #endif
    
        if (oldBatteryPcnt != batteryPcnt) {
            // Power up radio after sleep
                  
            sendBatteryLevel(batteryPcnt);
            oldBatteryPcnt = batteryPcnt;
        } 
                                                                                                                                                                          
      sleep(SLEEP_TIME); //sleep a bit  
                                                                                                                                           
    }
    

    0_1518613859739_IMG_5970.jpg 0_1518613878092_IMG_5971.jpg 0_1518613893620_IMG_5972.jpg 1_1518613931939_IMG_5907.jpg 0_1518613931939_IMG_5906.jpg 0_1518613977125_IMG_5908.jpg

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

      I don't think it is PCB related, try to make sure it is not a faulty arduino

      M 1 Reply Last reply
      0
      • gohanG gohan

        I don't think it is PCB related, try to make sure it is not a faulty arduino

        M Offline
        M Offline
        Mr_sensor
        wrote on last edited by
        #501

        @gohan said in 💬 Easy/Newbie PCB for MySensors:

        I don't think it is PCB related, try to make sure it is not a faulty arduino

        I already changed the arduino for a fresh soldered one but that did not alter things.

        1 Reply Last reply
        0
        • M Mr_sensor

          @sundberg84 Hi, I soldered a board holding a humidity and temperature sensor. That is working fine and reporting to may gateway (mqtt). Only thing which I do not get working ok is the battery level measurement. As I already posted in an other topic here.

          Here are some pictures of my board. The bat jumper is connected with a wire on the bottom. And the code I use on it right now.
          I already changed the pro mini for a fresh soldered one but still getting the the same result. Just ones giving the volt and % and after that only giving 0 volt as output.
          tried to include delay(500) in the sketch but that did not help. So how to solve this?

          
           
          #define MY_NODE_ID 2
          #define MY_PARENT_NODE_ID 0
          #define MY_PARENT_NODE_IS_STATIC
          
          // Enable debug prints
          #define MY_DEBUG
          
          // Enable and select radio type attached 
          #define MY_RADIO_NRF24
          //#define MY_RADIO_RFM69
          //#define MY_RS485
           
          #include <SparkFunHTU21D.h>
          #include <MySensors.h>  
          #include <Wire.h>
          #include <SPI.h>
          
          // Force sending an update of the temperature after n sensor reads, so a controller showing the
          // timestamp of the last update doesn't show something like 3 hours in the unlikely case, that
          // the value didn't change since;
          // i.e. the sensor would force sending an update every UPDATE_INTERVAL*FORCE_UPDATE_N_READS [ms]
          //static const uint8_t FORCE_UPDATE_N_READS = 10;
          
          #define CHILD_ID_HUM 0
          #define CHILD_ID_TEMP 1
          #define CHILD_ID_BATTERY 2
          //#define CHILD_ID_VOLT 2
          #define CHILD_ID_PRCNT 3
          
          float lastTemp;
          float lastHum;
          
          uint8_t nNoUpdatesTemp;
          uint8_t nNoUpdatesHum;
          boolean metric = true;
          
          
          
          
          void presentation()  
          { 
           // Send the Sketch Version Information to the Gateway                                                                                                                     
            sendSketchInfo("Humidity", "2.0");      
             
           // Register all sensors to gw (they will be created as child devices)                                                                                                     
            present(CHILD_ID_HUM, S_HUM);                                                                                                                                          
            present(CHILD_ID_TEMP, S_TEMP);
             present(CHILD_ID_BATTERY, S_MULTIMETER);                                                                                                                                         
            //metric = getControllerConfig().isMetric;
          
          
             
          }
          
          int BATTERY_SENSE_PIN = A0;  // select the input pin for the battery sense point
                                                                                                                                                            
          unsigned long SLEEP_TIME = 60000; // Sleep time between reads (in milliseconds)                                                                                             
          static int oldBatteryPcnt = 0;                                                                                                                                                                        
                                                                                                                                                                         
                                                                                                                                                                                  
          //Create an instance of the object                                                                                                                                          
          HTU21D myHumidity;                                                                                                                                                         
          
                                                                                                                                                                                                                                                                                                                                       
          MyMessage msgHum(CHILD_ID_HUM, V_HUM);                                                                                                                                      
          MyMessage msgTemp(CHILD_ID_TEMP, V_TEMP);                                                                                                                                   
          MyMessage msgBattery(CHILD_ID_BATTERY, V_VOLTAGE);
          //MyMessage msgBattery(CHILD_ID_BATTERY, V_PRCNT);
          
          
          void setup() {
              myHumidity.begin();
          
               // use the 1.1 V internal reference
          #if defined(__AVR_ATmega2560__)
              analogReference(INTERNAL1V1);
          #else
              analogReference(INTERNAL);
          #endif
          
          
          } 
                                                                                                                                                                                                                                                                                                                                                           
          void loop()                                                                                                                                                                 
          {                                                                                                                                                                           
            float temperature = myHumidity.readTemperature();                                                                                                                         
            //if (!metric) {                                                                                                                                                            
            //    temperature = (temperature * 1.8) + 32.0;                                                                                                                             
            //}                                                                                                                                                                         
            send(msgTemp.set(temperature, 1));
            Serial.print("T: ");
            Serial.println(temperature);                                                                                                                                     
          
            float humidity = myHumidity.readHumidity();                                                                                                                               
            send(msgHum.set(humidity, 1));                                                                                                                                         
            Serial.print("H: ");
            Serial.println(humidity);
          
          
             // get the battery Voltage
               
              int sensorValue = analogRead(BATTERY_SENSE_PIN);
              delay(500);
          #ifdef MY_DEBUG
              Serial.println(sensorValue);
          #endif
          
              // 1M, 470K divider across battery and using internal ADC ref of 1.1V
              // Sense point is bypassed with 0.1 uF cap to reduce noise at that point
              // ((1e6+470e3)/470e3)*1.1 = Vmax = 3.44 Volts
              // 3.44/1023 = Volts per bit = 0.003363075
              int batteryPcnt = sensorValue / 10;
          
          #ifdef MY_DEBUG
              float batteryV  = sensorValue * 0.003363075;
              Serial.print("Child ID ");
              Serial.print(CHILD_ID_BATTERY);
              Serial.print("Battery Voltage: ");
              Serial.print(batteryV);
              Serial.println(" V");
          
              Serial.print("Battery Percent: ");
              Serial.print(batteryPcnt);
              Serial.println(" %");
          #endif
          
              if (oldBatteryPcnt != batteryPcnt) {
                  // Power up radio after sleep
                        
                  sendBatteryLevel(batteryPcnt);
                  oldBatteryPcnt = batteryPcnt;
              } 
                                                                                                                                                                                
            sleep(SLEEP_TIME); //sleep a bit  
                                                                                                                                                 
          }
          

          0_1518613859739_IMG_5970.jpg 0_1518613878092_IMG_5971.jpg 0_1518613893620_IMG_5972.jpg 1_1518613931939_IMG_5907.jpg 0_1518613931939_IMG_5906.jpg 0_1518613977125_IMG_5908.jpg

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

          @mr_sensor - I can not see any errors on the pictures you posted.
          Can you measure the voltage on Booster-Vout and also on this pad.

          0_1518627818269_d0a0507b-dcfd-45c0-a8a7-288e718afc3d-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

          M 1 Reply Last reply
          0
          • sundberg84S sundberg84

            @mr_sensor - I can not see any errors on the pictures you posted.
            Can you measure the voltage on Booster-Vout and also on this pad.

            0_1518627818269_d0a0507b-dcfd-45c0-a8a7-288e718afc3d-image.png

            M Offline
            M Offline
            Mr_sensor
            wrote on last edited by
            #503

            @sundberg84 said in 💬 Easy/Newbie PCB for MySensors:

            @mr_sensor - I can not see any errors on the pictures you posted.
            Can you measure the voltage on Booster-Vout and also on this pad.

            0_1518627818269_d0a0507b-dcfd-45c0-a8a7-288e718afc3d-image.png

            I did measure the parts you mentioned. Booster is 3,36 v and the other pad is 0,00 the input strait from the batteries is 2,80 v

            Also, Just for my info, does it matter how the resistors or capacitors are soldered on the board? My biggest problem is always determine the right resistors value and the right way to solder them (+ -). On the pcb some of them are coded (very handy for me as a beginner) with a G but not all of them?
            So my worry was that I maybe have soldered the "battery measurer" ones in the wring direction? Could that be the problem here?

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

              Resistors can be soldered either way, but if you read 0v on that capacitor pin it mean you have a problem between the battery and the capacitor, so you have to backtrack the connection that is missing

              M 1 Reply Last reply
              0
              • gohanG gohan

                Resistors can be soldered either way, but if you read 0v on that capacitor pin it mean you have a problem between the battery and the capacitor, so you have to backtrack the connection that is missing

                M Offline
                M Offline
                Mr_sensor
                wrote on last edited by
                #505

                @gohan said in 💬 Easy/Newbie PCB for MySensors:

                Resistors can be soldered either way, but if you read 0v on that capacitor pin it mean you have a problem between the battery and the capacitor, so you have to backtrack the connection that is missing

                I measured the capacitor again and get a 0,10 output.

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

                  What are the resistor values you used? 0.1v is quite low

                  M 1 Reply Last reply
                  0
                  • gohanG gohan

                    What are the resistor values you used? 0.1v is quite low

                    M Offline
                    M Offline
                    Mr_sensor
                    wrote on last edited by
                    #507

                    @gohan said in 💬 Easy/Newbie PCB for MySensors:

                    What are the resistor values you used? 0.1v is quite low

                    Maybe I used the wrong capacitor it says 1uf (50v) but now I see it has to be 0,1uf could that be the problem here?

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

                      Capacitor value does not change the voltage. The resistors does... I would double check that you use the right resistors. For example it's easy to use a resistor marked 1k instead of 1M. With 3.3v you should have around 1v on the capacitor.

                      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
                      0
                      • gohanG Offline
                        gohanG Offline
                        gohan
                        Mod
                        wrote on last edited by
                        #509

                        you are also missing the capacitor on the booster output for better stability

                        M 1 Reply Last reply
                        0
                        • gohanG gohan

                          you are also missing the capacitor on the booster output for better stability

                          M Offline
                          M Offline
                          Mr_sensor
                          wrote on last edited by
                          #510

                          @gohan said in 💬 Easy/Newbie PCB for MySensors:

                          you are also missing the capacitor on the booster output for better stability

                          Ok, I assumed it was not needed when using a battery. Which one to use there?

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

                            It is needed if you use a booster. Look at project page for details.

                            1 Reply Last reply
                            0
                            • M Mr_sensor

                              @gohan said in 💬 Easy/Newbie PCB for MySensors:

                              you are also missing the capacitor on the booster output for better stability

                              Ok, I assumed it was not needed when using a battery. Which one to use there?

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

                              @mr_sensor a advice is to measure the resistance again over the resistors.

                              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

                              M 1 Reply Last reply
                              0
                              • sundberg84S sundberg84

                                @mr_sensor a advice is to measure the resistance again over the resistors.

                                M Offline
                                M Offline
                                Mr_sensor
                                wrote on last edited by
                                #513

                                @sundberg84 Well I tried that but did not get the measurement straight from the pcb si I decided t solder a new board using the right capacitor this time (0,1uf instead of 1uf) made sure using the right resistors as well and adding a capacitor after the booster. Than with the same mini pro from the other board tested again and wow it is working as intended.

                                Child ID 2Battery Voltage: 3.44 V
                                Battery Percent: 102 %
                                2930 TSF:MSG:SEND,2-2-0-0,s=255,c=3,t=0,pt=1,l=1,sg=0,ft=0,st=OK:102
                                2938 MCO:SLP:MS=60000,SMS=0,I1=255,M1=255,I2=255,M2=255
                                2945 TSF:TDI:TSL
                                2947 MCO:SLP:WUP=-1
                                2949 TSF:TRI:TSB
                                3065 TSF:MSG:SEND,2-2-0-0,s=1,c=1,t=0,pt=7,l=5,sg=0,ft=0,st=OK:998.0
                                T: 998.00
                                3178 TSF:MSG:SEND,2-2-0-0,s=0,c=1,t=1,pt=7,l=5,sg=0,ft=0,st=OK:998.0
                                H: 998.00
                                957
                                Child ID 2Battery Voltage: 3.22 V
                                Battery Percent: 95 %
                                3690 TSF:MSG:SEND,2-2-0-0,s=255,c=3,t=0,pt=1,l=1,sg=0,ft=0,st=OK:95
                                3698 MCO:SLP:MS=60000,SMS=0,I1=255,M1=255,I2=255,M2=255
                                3704 TSF:TDI:TSL
                                3706 MCO:SLP:WUP=-1
                                3708 TSF:TRI:TSB
                                3815 TSF:MSG:SEND,2-2-0-0,s=1,c=1,t=0,pt=7,l=5,sg=0,ft=0,st=OK:998.0
                                T: 998.00
                                3932 TSF:MSG:SEND,2-2-0-0,s=0,c=1,t=1,pt=7,l=5,sg=0,ft=0,st=OK:998.0
                                H: 998.00
                                955
                                Child ID 2Battery Voltage: 3.21 V
                                Battery Percent: 95 %
                                4442 MCO:SLP:MS=60000,SMS=0,I1=255,M1=255,I2=255,M2=255
                                4452 TSF:TDI:TSL
                                4454 MCO:SLP:WUP=-1
                                4456 TSF:TRI:TSB
                                4560 TSF:MSG:SEND,2-2-0-0,s=1,c=1,t=0,pt=7,l=5,sg=0,ft=0,st=OK:998.0
                                T: 998.00
                                4673 TSF:MSG:SEND,2-2-0-0,s=0,c=1,t=1,pt=7,l=5,sg=0,ft=0,st=OK:998.0
                                H: 998.00
                                953
                                Child ID 2Battery Voltage: 3.21 V
                                Battery Percent: 95 %
                                5185 MCO:SLP:MS=60000,SMS=0,I1=255,M1=255,I2=255,M2=255
                                5193 TSF:TDI:TSL
                                5195 MCO:SLP:WUP=-1
                                5197 TSF:TRI:TSB
                                5304 TSF:MSG:SEND,2-2-0-0,s=1,c=1,t=0,pt=7,l=5,sg=0,ft=0,st=OK:998.0
                                T: 998.00
                                5416 TSF:MSG:SEND,2-2-0-0,s=0,c=1,t=1,pt=7,l=5,sg=0,ft=0,st=OK:998.0
                                H: 998.00
                                952
                                Child ID 2Battery Voltage: 3.20 V
                                Battery Percent: 95 %
                                5926 MCO:SLP:MS=60000,SMS=0,I1=255,M1=255,I2=255,M2=255
                                5935 TSF:TDI:TSL
                                5939 MCO:SLP:WUP=-1
                                5941 TSF:TRI:TSB
                                6045 TSF:MSG:SEND,2-2-0-0,s=1,c=1,t=0,pt=7,l=5,sg=0,ft=0,st=OK:998.0
                                T: 998.00
                                6158 TSF:MSG:SEND,2-2-0-0,s=0,c=1,t=1,pt=7,l=5,sg=0,ft=0,st=OK:998.0
                                H: 998.00
                                952
                                Child ID 2Battery Voltage: 3.20 V
                                Battery Percent: 95 %
                                6670 MCO:SLP:MS=60000,SMS=0,I1=255,M1=255,I2=255,M2=255
                                6678 TSF:TDI:TSL
                                6680 MCO:SLP:WUP=-1
                                6682 TSF:TRI:TSB
                                6789 TSF:MSG:SEND,2-2-0-0,s=1,c=1,t=0,pt=7,l=5,sg=0,ft=0,st=OK:998.0
                                T: 998.00
                                6901 TSF:MSG:SEND,2-2-0-0,s=0,c=1,t=1,pt=7,l=5,sg=0,ft=0,st=OK:998.0
                                H: 998.00
                                952
                                Child ID 2Battery Voltage: 3.20 V
                                Battery Percent: 95 %
                                7411 MCO:SLP:MS=60000,SMS=0,I1=255,M1=255,I2=255,M2=255
                                7419 TSF:TDI:TSL
                                7424 MCO:SLP:WUP=-1
                                7426 TSF:TRI:TSB
                                7530 TSF:MSG:SEND,2-2-0-0,s=1,c=1,t=0,pt=7,l=5,sg=0,ft=0,st=OK:998.0
                                T: 998.00
                                7643 TSF:MSG:SEND,2-2-0-0,s=0,c=1,t=1,pt=7,l=5,sg=0,ft=0,st=OK:998.0
                                H: 998.00
                                952
                                Child ID 2Battery Voltage: 3.20 V
                                Battery Percent: 95 %
                                8155 MCO:SLP:MS=60000,SMS=0,I1=255,M1=255,I2=255,M2=255
                                8163 TSF:TDI:TSL
                                8165 MCO:SLP:WUP=-1
                                8167 TSF:TRI:TSB
                                8273 TSF:MSG:SEND,2-2-0-0,s=1,c=1,t=0,pt=7,l=5,sg=0,ft=0,st=OK:998.0
                                T: 998.00
                                8388 TSF:MSG:SEND,2-2-0-0,s=0,c=1,t=1,pt=7,l=5,sg=0,ft=0,st=OK:998.0
                                H: 998.00
                                955
                                Child ID 2Battery Voltage: 3.21 V
                                Battery Percent: 95 %
                                8898 MCO:SLP:MS=60000,SMS=0,I1=255,M1=255,I2=255,M2=255
                                8908 TSF:TDI:TSL
                                8910 MCO:SLP:WUP=-1
                                8912 TSF:TRI:TSB
                                9021 TSF:MSG:SEND,2-2-0-0,s=1,c=1,t=0,pt=7,l=5,sg=0,ft=0,st=OK:998.0
                                T: 998.00
                                9132 TSF:MSG:SEND,2-2-0-0,s=0,c=1,t=1,pt=7,l=5,sg=0,ft=0,st=OK:998.0
                                H: 998.00
                                948
                                Child ID 2Battery Voltage: 3.19 V
                                Battery Percent: 94 %
                                9646 TSF:MSG:SEND,2-2-0-0,s=255,c=3,t=0,pt=1,l=1,sg=0,ft=0,st=OK:94
                                9654 MCO:SLP:MS=60000,SMS=0,I1=255,M1=255,I2=255,M2=255
                                9660 TSF:TDI:TSL
                                9662 MCO:SLP:WUP=-1
                                9664 TSF:TRI:TSB
                                9771 TSF:MSG:SEND,2-2-0-0,s=1,c=1,t=0,pt=7,l=5,sg=0,ft=0,st=OK:998.0
                                T: 998.00
                                9881 TSF:MSG:SEND,2-2-0-0,s=0,c=1,t=1,pt=7,l=5,sg=0,ft=0,st=OK:998.0
                                H: 998.00
                                952
                                Child ID 2Battery Voltage: 3.20 V
                                Battery Percent: 95 %
                                10395 TSF:MSG:SEND,2-2-0-0,s=255,c=3,t=0,pt=1,l=1,sg=0,ft=0,st=OK:95
                                10403 MCO:SLP:MS=60000,SMS=0,I1=255,M1=255,I2=255,M2=255
                                10409 TSF:TDI:TSL
                                10412 MCO:SLP:WUP=-1
                                10414 TSF:TRI:TSB
                                10520 TSF:MSG:SEND,2-2-0-0,s=1,c=1,t=0,pt=7,l=5,sg=0,ft=0,st=OK:998.0
                                T: 998.00
                                10635 TSF:MSG:SEND,2-2-0-0,s=0,c=1,t=1,pt=7,l=5,sg=0,ft=0,st=OK:998.0
                                H: 998.00
                                953
                                Child ID 2Battery Voltage: 3.21 V
                                Battery Percent: 95 %
                                11147 MCO:SLP:MS=60000,SMS=0,I1=255,M1=255,I2=255,M2=255
                                11155 TSF:TDI:TSL
                                

                                Now in mqtt I can see the percentage as:

                                95
                                qos : 0, retain : false, cmd : publish, dup : false, topic : **mygateway1-out/2/255/3/0/0**, messageId : , length : 30, Raw payload : 5753```
                                
                                But not the voltage?
                                sundberg84S 1 Reply Last reply
                                1
                                • M Mr_sensor

                                  @sundberg84 Well I tried that but did not get the measurement straight from the pcb si I decided t solder a new board using the right capacitor this time (0,1uf instead of 1uf) made sure using the right resistors as well and adding a capacitor after the booster. Than with the same mini pro from the other board tested again and wow it is working as intended.

                                  Child ID 2Battery Voltage: 3.44 V
                                  Battery Percent: 102 %
                                  2930 TSF:MSG:SEND,2-2-0-0,s=255,c=3,t=0,pt=1,l=1,sg=0,ft=0,st=OK:102
                                  2938 MCO:SLP:MS=60000,SMS=0,I1=255,M1=255,I2=255,M2=255
                                  2945 TSF:TDI:TSL
                                  2947 MCO:SLP:WUP=-1
                                  2949 TSF:TRI:TSB
                                  3065 TSF:MSG:SEND,2-2-0-0,s=1,c=1,t=0,pt=7,l=5,sg=0,ft=0,st=OK:998.0
                                  T: 998.00
                                  3178 TSF:MSG:SEND,2-2-0-0,s=0,c=1,t=1,pt=7,l=5,sg=0,ft=0,st=OK:998.0
                                  H: 998.00
                                  957
                                  Child ID 2Battery Voltage: 3.22 V
                                  Battery Percent: 95 %
                                  3690 TSF:MSG:SEND,2-2-0-0,s=255,c=3,t=0,pt=1,l=1,sg=0,ft=0,st=OK:95
                                  3698 MCO:SLP:MS=60000,SMS=0,I1=255,M1=255,I2=255,M2=255
                                  3704 TSF:TDI:TSL
                                  3706 MCO:SLP:WUP=-1
                                  3708 TSF:TRI:TSB
                                  3815 TSF:MSG:SEND,2-2-0-0,s=1,c=1,t=0,pt=7,l=5,sg=0,ft=0,st=OK:998.0
                                  T: 998.00
                                  3932 TSF:MSG:SEND,2-2-0-0,s=0,c=1,t=1,pt=7,l=5,sg=0,ft=0,st=OK:998.0
                                  H: 998.00
                                  955
                                  Child ID 2Battery Voltage: 3.21 V
                                  Battery Percent: 95 %
                                  4442 MCO:SLP:MS=60000,SMS=0,I1=255,M1=255,I2=255,M2=255
                                  4452 TSF:TDI:TSL
                                  4454 MCO:SLP:WUP=-1
                                  4456 TSF:TRI:TSB
                                  4560 TSF:MSG:SEND,2-2-0-0,s=1,c=1,t=0,pt=7,l=5,sg=0,ft=0,st=OK:998.0
                                  T: 998.00
                                  4673 TSF:MSG:SEND,2-2-0-0,s=0,c=1,t=1,pt=7,l=5,sg=0,ft=0,st=OK:998.0
                                  H: 998.00
                                  953
                                  Child ID 2Battery Voltage: 3.21 V
                                  Battery Percent: 95 %
                                  5185 MCO:SLP:MS=60000,SMS=0,I1=255,M1=255,I2=255,M2=255
                                  5193 TSF:TDI:TSL
                                  5195 MCO:SLP:WUP=-1
                                  5197 TSF:TRI:TSB
                                  5304 TSF:MSG:SEND,2-2-0-0,s=1,c=1,t=0,pt=7,l=5,sg=0,ft=0,st=OK:998.0
                                  T: 998.00
                                  5416 TSF:MSG:SEND,2-2-0-0,s=0,c=1,t=1,pt=7,l=5,sg=0,ft=0,st=OK:998.0
                                  H: 998.00
                                  952
                                  Child ID 2Battery Voltage: 3.20 V
                                  Battery Percent: 95 %
                                  5926 MCO:SLP:MS=60000,SMS=0,I1=255,M1=255,I2=255,M2=255
                                  5935 TSF:TDI:TSL
                                  5939 MCO:SLP:WUP=-1
                                  5941 TSF:TRI:TSB
                                  6045 TSF:MSG:SEND,2-2-0-0,s=1,c=1,t=0,pt=7,l=5,sg=0,ft=0,st=OK:998.0
                                  T: 998.00
                                  6158 TSF:MSG:SEND,2-2-0-0,s=0,c=1,t=1,pt=7,l=5,sg=0,ft=0,st=OK:998.0
                                  H: 998.00
                                  952
                                  Child ID 2Battery Voltage: 3.20 V
                                  Battery Percent: 95 %
                                  6670 MCO:SLP:MS=60000,SMS=0,I1=255,M1=255,I2=255,M2=255
                                  6678 TSF:TDI:TSL
                                  6680 MCO:SLP:WUP=-1
                                  6682 TSF:TRI:TSB
                                  6789 TSF:MSG:SEND,2-2-0-0,s=1,c=1,t=0,pt=7,l=5,sg=0,ft=0,st=OK:998.0
                                  T: 998.00
                                  6901 TSF:MSG:SEND,2-2-0-0,s=0,c=1,t=1,pt=7,l=5,sg=0,ft=0,st=OK:998.0
                                  H: 998.00
                                  952
                                  Child ID 2Battery Voltage: 3.20 V
                                  Battery Percent: 95 %
                                  7411 MCO:SLP:MS=60000,SMS=0,I1=255,M1=255,I2=255,M2=255
                                  7419 TSF:TDI:TSL
                                  7424 MCO:SLP:WUP=-1
                                  7426 TSF:TRI:TSB
                                  7530 TSF:MSG:SEND,2-2-0-0,s=1,c=1,t=0,pt=7,l=5,sg=0,ft=0,st=OK:998.0
                                  T: 998.00
                                  7643 TSF:MSG:SEND,2-2-0-0,s=0,c=1,t=1,pt=7,l=5,sg=0,ft=0,st=OK:998.0
                                  H: 998.00
                                  952
                                  Child ID 2Battery Voltage: 3.20 V
                                  Battery Percent: 95 %
                                  8155 MCO:SLP:MS=60000,SMS=0,I1=255,M1=255,I2=255,M2=255
                                  8163 TSF:TDI:TSL
                                  8165 MCO:SLP:WUP=-1
                                  8167 TSF:TRI:TSB
                                  8273 TSF:MSG:SEND,2-2-0-0,s=1,c=1,t=0,pt=7,l=5,sg=0,ft=0,st=OK:998.0
                                  T: 998.00
                                  8388 TSF:MSG:SEND,2-2-0-0,s=0,c=1,t=1,pt=7,l=5,sg=0,ft=0,st=OK:998.0
                                  H: 998.00
                                  955
                                  Child ID 2Battery Voltage: 3.21 V
                                  Battery Percent: 95 %
                                  8898 MCO:SLP:MS=60000,SMS=0,I1=255,M1=255,I2=255,M2=255
                                  8908 TSF:TDI:TSL
                                  8910 MCO:SLP:WUP=-1
                                  8912 TSF:TRI:TSB
                                  9021 TSF:MSG:SEND,2-2-0-0,s=1,c=1,t=0,pt=7,l=5,sg=0,ft=0,st=OK:998.0
                                  T: 998.00
                                  9132 TSF:MSG:SEND,2-2-0-0,s=0,c=1,t=1,pt=7,l=5,sg=0,ft=0,st=OK:998.0
                                  H: 998.00
                                  948
                                  Child ID 2Battery Voltage: 3.19 V
                                  Battery Percent: 94 %
                                  9646 TSF:MSG:SEND,2-2-0-0,s=255,c=3,t=0,pt=1,l=1,sg=0,ft=0,st=OK:94
                                  9654 MCO:SLP:MS=60000,SMS=0,I1=255,M1=255,I2=255,M2=255
                                  9660 TSF:TDI:TSL
                                  9662 MCO:SLP:WUP=-1
                                  9664 TSF:TRI:TSB
                                  9771 TSF:MSG:SEND,2-2-0-0,s=1,c=1,t=0,pt=7,l=5,sg=0,ft=0,st=OK:998.0
                                  T: 998.00
                                  9881 TSF:MSG:SEND,2-2-0-0,s=0,c=1,t=1,pt=7,l=5,sg=0,ft=0,st=OK:998.0
                                  H: 998.00
                                  952
                                  Child ID 2Battery Voltage: 3.20 V
                                  Battery Percent: 95 %
                                  10395 TSF:MSG:SEND,2-2-0-0,s=255,c=3,t=0,pt=1,l=1,sg=0,ft=0,st=OK:95
                                  10403 MCO:SLP:MS=60000,SMS=0,I1=255,M1=255,I2=255,M2=255
                                  10409 TSF:TDI:TSL
                                  10412 MCO:SLP:WUP=-1
                                  10414 TSF:TRI:TSB
                                  10520 TSF:MSG:SEND,2-2-0-0,s=1,c=1,t=0,pt=7,l=5,sg=0,ft=0,st=OK:998.0
                                  T: 998.00
                                  10635 TSF:MSG:SEND,2-2-0-0,s=0,c=1,t=1,pt=7,l=5,sg=0,ft=0,st=OK:998.0
                                  H: 998.00
                                  953
                                  Child ID 2Battery Voltage: 3.21 V
                                  Battery Percent: 95 %
                                  11147 MCO:SLP:MS=60000,SMS=0,I1=255,M1=255,I2=255,M2=255
                                  11155 TSF:TDI:TSL
                                  

                                  Now in mqtt I can see the percentage as:

                                  95
                                  qos : 0, retain : false, cmd : publish, dup : false, topic : **mygateway1-out/2/255/3/0/0**, messageId : , length : 30, Raw payload : 5753```
                                  
                                  But not the voltage?
                                  sundberg84S Offline
                                  sundberg84S Offline
                                  sundberg84
                                  Hardware Contributor
                                  wrote on last edited by
                                  #514

                                  @mr_sensor good to hear its working.
                                  It looks like you are only sending the % and not the voltage?

                                  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
                                  • D Offline
                                    D Offline
                                    dakipro
                                    wrote on last edited by
                                    #515

                                    @Mr_sensor It happened to me once that capacitor was just shortening the circuit, it was a smd, but when I removed it and tested it it was constantly making shortage, thus the circuit was never working and luckily my power supply had a low enough protection.
                                    I examined cap very closely, all looked fine, but internally it was not working fine.

                                    Since most of us (well, me at least) are buying cheap components I made it a habit now to always measure every passive component before installation, partly eliminates one variable

                                    C: OpenHAB2 with node-red on linux laptop
                                    GW: Arduino Nano - W5100 Ethernet, Nrf24l01+ 2,4Ghz mqtt
                                    GW: Arduino Mega, RFLink 433Mhz

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

                                      A short sneak-peak on the upcoming revision...
                                      Still a long way to go...

                                      0_1519205922527_266ef138-f029-43ed-925e-d3992fce5ed2-image.png

                                      Rev 10 - Nrf24l01+ ed.

                                      • Completley redesigned in KiCad.
                                      • MysX location changed to accept more MysX boards and align like RFM version.
                                      • Optional signing added
                                      • Optional SPI flash added.
                                      • Extra pins aligned to 2.45 vertical & horisontal
                                      • Relocated Extra + Bat Measurer some to allow more space to booster
                                      • Changed pull-up resistor from D3 to D5 to have one more pin for Interrupt
                                      • Relocated D5 pullup, MysX and IRQ jumper some.
                                      • Changed footprint (silk-screen) on capacitor to easier show Gnd/Pos side.

                                      Need to change footprint on voltage regulator on both nrf and rfm edition back to a square and not a liniar one. (rev 9 change). Not intended to revert back.

                                      Also a bit worried the 4,7uF cap os to far away from radio.

                                      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

                                      gohanG Nca78N 2 Replies Last reply
                                      2
                                      • sundberg84S sundberg84

                                        A short sneak-peak on the upcoming revision...
                                        Still a long way to go...

                                        0_1519205922527_266ef138-f029-43ed-925e-d3992fce5ed2-image.png

                                        Rev 10 - Nrf24l01+ ed.

                                        • Completley redesigned in KiCad.
                                        • MysX location changed to accept more MysX boards and align like RFM version.
                                        • Optional signing added
                                        • Optional SPI flash added.
                                        • Extra pins aligned to 2.45 vertical & horisontal
                                        • Relocated Extra + Bat Measurer some to allow more space to booster
                                        • Changed pull-up resistor from D3 to D5 to have one more pin for Interrupt
                                        • Relocated D5 pullup, MysX and IRQ jumper some.
                                        • Changed footprint (silk-screen) on capacitor to easier show Gnd/Pos side.

                                        Need to change footprint on voltage regulator on both nrf and rfm edition back to a square and not a liniar one. (rev 9 change). Not intended to revert back.

                                        Also a bit worried the 4,7uF cap os to far away from radio.

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

                                        @sundberg84 said in 💬 Easy/Newbie PCB for MySensors:

                                        Also a bit worried the 4,7uF cap os to far away from radio.

                                        Putting it underneath the nrf24 module? I know it is not a "clean solution" but there would be still be unused space under the radio module

                                        sundberg84S 1 Reply Last reply
                                        0
                                        • gohanG gohan

                                          @sundberg84 said in 💬 Easy/Newbie PCB for MySensors:

                                          Also a bit worried the 4,7uF cap os to far away from radio.

                                          Putting it underneath the nrf24 module? I know it is not a "clean solution" but there would be still be unused space under the radio module

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

                                          @gohan - thanks, not what I want to do - I have descided to have optional/more advanced on bottom side. This is the core idea of the PCB. I might revert back to Rev 9 footprint and squeeze it in like prev. revision.

                                          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
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          22

                                          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