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. My Project
  3. nRF5 action!

nRF5 action!

Scheduled Pinned Locked Moved My Project
1.9k Posts 49 Posters 631.1k Views 44 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.
  • T Offline
    T Offline
    Toyman
    wrote on last edited by
    #1313

    Need your help, guys. I am trying to reprogram a smart socket based on nrf51 module. The schematic is:
    alt text
    I successfully did it using conventional BT Arduino core (Sandeep's) and I was able to switch the relay on/off.
    However, when I tried to use Mysensors ESB5 implementation, the relay just switches On briefly and then immediately Off.
    I believe this is because the pin doesn't supply enough current for the transistor to saturate (3.3v/1k=3.3ma).
    Questions:
    a ) shall I use hwPinMode(PIN, OUTPUT_S0H1)? if yes,
    b ) why in non-MySensors sketch a simple pinMode(PIN, OUTPUT) worked?
    Does MuSensors implementation overrides Sandeep's definitions so the pin supplies less current?

    NeverDieN 1 Reply Last reply
    0
    • T Toyman

      Need your help, guys. I am trying to reprogram a smart socket based on nrf51 module. The schematic is:
      alt text
      I successfully did it using conventional BT Arduino core (Sandeep's) and I was able to switch the relay on/off.
      However, when I tried to use Mysensors ESB5 implementation, the relay just switches On briefly and then immediately Off.
      I believe this is because the pin doesn't supply enough current for the transistor to saturate (3.3v/1k=3.3ma).
      Questions:
      a ) shall I use hwPinMode(PIN, OUTPUT_S0H1)? if yes,
      b ) why in non-MySensors sketch a simple pinMode(PIN, OUTPUT) worked?
      Does MuSensors implementation overrides Sandeep's definitions so the pin supplies less current?

      NeverDieN Offline
      NeverDieN Offline
      NeverDie
      Hero Member
      wrote on last edited by NeverDie
      #1314

      @Toyman I don't know the answers, but section 20.4.1 GPIO Electrical Specification from the datasheet might give you some insight. What I notice from it is that there's quite a spread between the min and max driver current rating, with no real explanation as to why. So, for that reason, if your target currents are higher than the minimum ratings, perhaps you're better off using an nRF5 pin to control a load switch, which in turn should easily handle your desired currents?

      T 1 Reply Last reply
      0
      • NeverDieN NeverDie

        @Toyman I don't know the answers, but section 20.4.1 GPIO Electrical Specification from the datasheet might give you some insight. What I notice from it is that there's quite a spread between the min and max driver current rating, with no real explanation as to why. So, for that reason, if your target currents are higher than the minimum ratings, perhaps you're better off using an nRF5 pin to control a load switch, which in turn should easily handle your desired currents?

        T Offline
        T Offline
        Toyman
        wrote on last edited by
        #1315

        The schematic is given. I just don't understand why it worked with BLE core and why it doesn't with d0016's.
        I always thought Mysensors is an extension of vanilla nrf5 arduino core.

        d00616D 1 Reply Last reply
        0
        • T Toyman

          The schematic is given. I just don't understand why it worked with BLE core and why it doesn't with d0016's.
          I always thought Mysensors is an extension of vanilla nrf5 arduino core.

          d00616D Offline
          d00616D Offline
          d00616
          Contest Winner
          wrote on last edited by d00616
          #1316

          @Toyman said in nRF5 Bluetooth action!:

          The schematic is given. I just don't understand why it worked with BLE core and why it doesn't with d0016's.
          I always thought Mysensors is an extension of vanilla nrf5 arduino core.

          You have to remove the SoftDevice. The EEPROM Emulation, included in MySensors, is incompatible and the radio and RTC interrupt is blocked by the SoftDevice. The system call to disable the SoftDevice is not available in the Arduino port. Here is some example to erase the MCU.

          T 1 Reply Last reply
          0
          • d00616D d00616

            @Toyman said in nRF5 Bluetooth action!:

            The schematic is given. I just don't understand why it worked with BLE core and why it doesn't with d0016's.
            I always thought Mysensors is an extension of vanilla nrf5 arduino core.

            You have to remove the SoftDevice. The EEPROM Emulation, included in MySensors, is incompatible and the radio and RTC interrupt is blocked by the SoftDevice. The system call to disable the SoftDevice is not available in the Arduino port. Here is some example to erase the MCU.

            T Offline
            T Offline
            Toyman
            wrote on last edited by
            #1317

            @d00616 everything is working EXCEPT relay control.
            So the node is recognized in Domoticz, I can switch it on and off, but the relay just doesn't switch on permanently when I send HIGH to the pin. It switches on and almost immediately off.

            d00616D 1 Reply Last reply
            0
            • T Toyman

              @d00616 everything is working EXCEPT relay control.
              So the node is recognized in Domoticz, I can switch it on and off, but the relay just doesn't switch on permanently when I send HIGH to the pin. It switches on and almost immediately off.

              d00616D Offline
              d00616D Offline
              d00616
              Contest Winner
              wrote on last edited by
              #1318

              @Toyman said in nRF5 Bluetooth action!:

              @d00616 everything is working EXCEPT relay control.
              So the node is recognized in Domoticz, I can switch it on and off, but the relay just doesn't switch on permanently when I send HIGH to the pin. It switches on and almost immediately off.

              With the extended output mode, you are on the safe side, but I think this isn't the problem. Maybe domoticz sends the off command or there is something in the sketch logic. Please try to switch on the port outside the MySensors logic like in setup() or by the button.

              Your design has connected a button to P0.00 and an transistor to P0.01. These pins are for the 32kHz clock. Please check, that you have to choosen the RC oscillator as LFCKL source.

              1 Reply Last reply
              0
              • NeverDieN Offline
                NeverDieN Offline
                NeverDie
                Hero Member
                wrote on last edited by NeverDie
                #1319

                I received a battery clip designed to hold two CR2032's in series, but I was surprised to find how much wider it is than a single cell holder:
                0_1512523048051_battery_clip.jpg
                Why? And, is that how they all are?

                So, at this point, I either need to increase the PCB diameter again, or else go square and hang this clip diagonally.

                You may ask, why do this at all? One of the reasons is that the AM612 PIR requires a minimum of 2.7v, and a single CR2032 doesn't leave much headroom, especially given the dippy discharge nature of coincells. I figure two CR2032's in series with a voltage regulator should, in theory, manage the issue a lot better. Indeed, with that in mind, I already have PCB's with the pads for a voltage regulator on them, but I didn't expect the battery clip to be so big.

                T 2 Replies Last reply
                0
                • NeverDieN NeverDie

                  I received a battery clip designed to hold two CR2032's in series, but I was surprised to find how much wider it is than a single cell holder:
                  0_1512523048051_battery_clip.jpg
                  Why? And, is that how they all are?

                  So, at this point, I either need to increase the PCB diameter again, or else go square and hang this clip diagonally.

                  You may ask, why do this at all? One of the reasons is that the AM612 PIR requires a minimum of 2.7v, and a single CR2032 doesn't leave much headroom, especially given the dippy discharge nature of coincells. I figure two CR2032's in series with a voltage regulator should, in theory, manage the issue a lot better. Indeed, with that in mind, I already have PCB's with the pads for a voltage regulator on them, but I didn't expect the battery clip to be so big.

                  T Offline
                  T Offline
                  Toyman
                  wrote on last edited by
                  #1320

                  @neverdie said in nRF5 Bluetooth action!:

                  else go square

                  if you ask me, go this way given the BT module itself is already beyond the circular footprint

                  1 Reply Last reply
                  2
                  • NeverDieN NeverDie

                    I received a battery clip designed to hold two CR2032's in series, but I was surprised to find how much wider it is than a single cell holder:
                    0_1512523048051_battery_clip.jpg
                    Why? And, is that how they all are?

                    So, at this point, I either need to increase the PCB diameter again, or else go square and hang this clip diagonally.

                    You may ask, why do this at all? One of the reasons is that the AM612 PIR requires a minimum of 2.7v, and a single CR2032 doesn't leave much headroom, especially given the dippy discharge nature of coincells. I figure two CR2032's in series with a voltage regulator should, in theory, manage the issue a lot better. Indeed, with that in mind, I already have PCB's with the pads for a voltage regulator on them, but I didn't expect the battery clip to be so big.

                    T Offline
                    T Offline
                    Toyman
                    wrote on last edited by
                    #1321

                    @neverdie frankly, I would revive CR2450 idea. 620mah vs 200mah is HUGE difference

                    NeverDieN 1 Reply Last reply
                    0
                    • NeverDieN Offline
                      NeverDieN Offline
                      NeverDie
                      Hero Member
                      wrote on last edited by
                      #1322

                      I did a quick hack for testing purposes:
                      0_1512574770015_v20_2.png
                      0_1512574776678_v20_1.png
                      With all this extra space, I could probably add the hall sensor back in. I had taken it out so that I'd have the option of adding an extra LED, plus two pushbuttons.

                      1 Reply Last reply
                      0
                      • NeverDieN Offline
                        NeverDieN Offline
                        NeverDie
                        Hero Member
                        wrote on last edited by NeverDie
                        #1323

                        I found a much better 2x battery clip made by Linx. Even though it's through-hole rather than surface mount, its footprint is much smaller. https://www.mouser.com/Search/ProductDetail.aspx?R=BAT-HLD-001-THMvirtualkey66280000virtualkey712-BAT-HLD-001-THM
                        Using it, I don't have to enlarge the diameter or go square. I can keep the same size.

                        1 Reply Last reply
                        0
                        • T Toyman

                          @neverdie frankly, I would revive CR2450 idea. 620mah vs 200mah is HUGE difference

                          NeverDieN Offline
                          NeverDieN Offline
                          NeverDie
                          Hero Member
                          wrote on last edited by NeverDie
                          #1324

                          @toyman said in nRF5 Bluetooth action!:

                          @neverdie frankly, I would revive CR2450 idea. 620mah vs 200mah is HUGE difference

                          If I can keep the footprint the same (and I don't see why not), I could attach a 2x battery clip for a 2450, and then you'd have the best of both worlds. I have a hunch that finding such a clip, though, won't be easy.

                          1 Reply Last reply
                          1
                          • O Offline
                            O Offline
                            Omemanti
                            wrote on last edited by Omemanti
                            #1325

                            @neverdie
                            maybe check out: https://www.aliexpress.com/item/5pcs-20-0mm-CR2032-2032-Battery-Button-Cell-Holder-Coin-Cell-Retainer-Battery-Holder-Through-hole/32741947070.html?spm=a2g0s.9042311.0.0.E38CWg

                            or if you need 50... :
                            https://www.aliexpress.com/item/50pcs-20-0mm-CR2032-2032-Battery-Button-Cell-Holder-Coin-Cell-Retainer-Battery-Holder-Through-hole/32739802992.html

                            price wise,, i would say, go for the second one ;)

                            NeverDieN 1 Reply Last reply
                            0
                            • O Omemanti

                              @neverdie
                              maybe check out: https://www.aliexpress.com/item/5pcs-20-0mm-CR2032-2032-Battery-Button-Cell-Holder-Coin-Cell-Retainer-Battery-Holder-Through-hole/32741947070.html?spm=a2g0s.9042311.0.0.E38CWg

                              or if you need 50... :
                              https://www.aliexpress.com/item/50pcs-20-0mm-CR2032-2032-Battery-Button-Cell-Holder-Coin-Cell-Retainer-Battery-Holder-Through-hole/32739802992.html

                              price wise,, i would say, go for the second one ;)

                              NeverDieN Offline
                              NeverDieN Offline
                              NeverDie
                              Hero Member
                              wrote on last edited by NeverDie
                              #1326

                              @omemanti Thanks.

                              I ordered the Linx from mouser yesterday, though. It uses four smaller pins instead of two larger pins. That actually helps keep the footprint small. Also, Linx has practically identical holders for holding a single CR2032 versus holding two CR2032's. That means I can use a single PCB board and decide which configuration I want. The mouser price is quite reasonable (about 25 cents each).

                              I did try looking for a holder that can hold two CR2450's in series, but I didn't find any.

                              1 Reply Last reply
                              0
                              • NeverDieN Offline
                                NeverDieN Offline
                                NeverDie
                                Hero Member
                                wrote on last edited by NeverDie
                                #1327

                                I received the Linx parts today. I like them more than any other battery holders I've yet seen, because they elevate the sides just a smidge, which eliminates any risk of short-circuiting to nearby through-holes. For instance, the ones from Aliexpress (linked above by Omemtani) don't do that. Nor do any of the other ones I've tried so far.

                                On Tuesday I should receive PCB's specifically designed to use the Linx holders. I can hardly wait.

                                NeverDieN 1 Reply Last reply
                                0
                                • NeverDieN Offline
                                  NeverDieN Offline
                                  NeverDie
                                  Hero Member
                                  wrote on last edited by
                                  #1328

                                  I just noticed these small and fairly cheap nRF52 modules on Aliexpress:
                                  https://www.aliexpress.com/item/wholesale-Holyiot-TinyBLE-nRF52832-Bluetooth-low-energy-module-BLE-5-0-for-Bluetooth-mesh/32840369737.html?spm=2114.search0204.3.2.eQaXfB&ws_ab_test=searchweb0_0,searchweb201602_4_10152_10065_5000015_10151_10344_10068_10130_10345_10324_10342_10547_10325_10343_51102_10546_10340_10341_10548_10545_5130015_10541_10084_10083_10307_5690015_10539_5080015_10312_10059_10313_10314_10534_100031_10604_10603_10103_10605_10594_5060015_10596_10142_10107,searchweb201603_14,ppcSwitch_4_ppcChannel&algo_expid=f4f4f444-b2af-44da-9380-676cdca3c65f-0&algo_pvid=f4f4f444-b2af-44da-9380-676cdca3c65f&rmStoreLevelAB=0
                                  But how would one solder it? Is solder paste the only option?

                                  Nca78N 1 Reply Last reply
                                  0
                                  • NeverDieN Offline
                                    NeverDieN Offline
                                    NeverDie
                                    Hero Member
                                    wrote on last edited by
                                    #1329

                                    Here's one for the blooper reel:
                                    0_1512843096871_blooper.jpg
                                    I blithely put the photoresistor in one of the vacant leak detection slots. Of course, in retrospect, it's an obvious mistake: too close to the LED. So, when the LED lights, the photoresistor thinks it's suddenly bright out. :laughing:

                                    1 Reply Last reply
                                    3
                                    • NeverDieN NeverDie

                                      I just noticed these small and fairly cheap nRF52 modules on Aliexpress:
                                      https://www.aliexpress.com/item/wholesale-Holyiot-TinyBLE-nRF52832-Bluetooth-low-energy-module-BLE-5-0-for-Bluetooth-mesh/32840369737.html?spm=2114.search0204.3.2.eQaXfB&ws_ab_test=searchweb0_0,searchweb201602_4_10152_10065_5000015_10151_10344_10068_10130_10345_10324_10342_10547_10325_10343_51102_10546_10340_10341_10548_10545_5130015_10541_10084_10083_10307_5690015_10539_5080015_10312_10059_10313_10314_10534_100031_10604_10603_10103_10605_10594_5060015_10596_10142_10107,searchweb201603_14,ppcSwitch_4_ppcChannel&algo_expid=f4f4f444-b2af-44da-9380-676cdca3c65f-0&algo_pvid=f4f4f444-b2af-44da-9380-676cdca3c65f&rmStoreLevelAB=0
                                      But how would one solder it? Is solder paste the only option?

                                      Nca78N Offline
                                      Nca78N Offline
                                      Nca78
                                      Hardware Contributor
                                      wrote on last edited by Nca78
                                      #1330

                                      @neverdie said in nRF5 Bluetooth action!:

                                      I just noticed these small and fairly cheap nRF52 modules on Aliexpress:
                                      But how would one solder it? Is solder paste the only option?

                                      I have bought two to check the range but I don't have very high expectations about that :D
                                      For soldering it should work the same way than with qfn chips:

                                      • put a bit of solder on each pad of the module, then use solder wick to remove excess so it's just lightly tinned
                                      • put a bit of solder on PCB pads
                                      • put chip in place, then heat up with hot air gun

                                      Here as it's a module the hot air might unsolder some components, so using regular iron, flux and a bit oversized pads (so you can heat them up with soldering iron) should do the trick. I will try and tell you the result.

                                      T 1 Reply Last reply
                                      1
                                      • Nca78N Nca78

                                        @neverdie said in nRF5 Bluetooth action!:

                                        I just noticed these small and fairly cheap nRF52 modules on Aliexpress:
                                        But how would one solder it? Is solder paste the only option?

                                        I have bought two to check the range but I don't have very high expectations about that :D
                                        For soldering it should work the same way than with qfn chips:

                                        • put a bit of solder on each pad of the module, then use solder wick to remove excess so it's just lightly tinned
                                        • put a bit of solder on PCB pads
                                        • put chip in place, then heat up with hot air gun

                                        Here as it's a module the hot air might unsolder some components, so using regular iron, flux and a bit oversized pads (so you can heat them up with soldering iron) should do the trick. I will try and tell you the result.

                                        T Offline
                                        T Offline
                                        Toyman
                                        wrote on last edited by Toyman
                                        #1331

                                        @nca78 "At first I was afraid, I was petrified" :-), but then I relialized that if "recepting" pads are long enough even plain soldering iron will do.
                                        The solder will just flow under the module provided module pads are pretinned Ias you recommended)

                                        1 Reply Last reply
                                        1
                                        • NeverDieN NeverDie

                                          I received the Linx parts today. I like them more than any other battery holders I've yet seen, because they elevate the sides just a smidge, which eliminates any risk of short-circuiting to nearby through-holes. For instance, the ones from Aliexpress (linked above by Omemtani) don't do that. Nor do any of the other ones I've tried so far.

                                          On Tuesday I should receive PCB's specifically designed to use the Linx holders. I can hardly wait.

                                          NeverDieN Offline
                                          NeverDieN Offline
                                          NeverDie
                                          Hero Member
                                          wrote on last edited by
                                          #1332

                                          @neverdie said in nRF5 Bluetooth action!:

                                          I received the Linx parts today. I like them more than any other battery holders I've yet seen, because they elevate the sides just a smidge, which eliminates any risk of short-circuiting to nearby through-holes. For instance, the ones from Aliexpress (linked above by Omemtani) don't do that. Nor do any of the other ones I've tried so far.

                                          On Tuesday I should receive PCB's specifically designed to use the Linx holders. I can hardly wait.

                                          I received the PCB's a day early. Unfortunately, it's almost total fiction to say that the Linx holder is designed to hold two CR2032's. Instead, it can hold one CR2032 comfortably, or, with finessing, it can hold two CR2025's. With extreme finessing I did get it to hold two CR2032's, but it will be touch-and-go as to whether the solder joints will hold long-term under the strain. Aside from the small footprint, I'm not happy with it. :(

                                          NeverDieN 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.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