Skip to content
  • OpenHardware.io
  • Categories
  • Recent
  • Tags
  • Popular
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo
  1. Home
  2. Hardware
  3. Where to get legit nRF24L01+ modules?
  • Getting Started
  • Controller
  • Build
  • Hardware
  • Download/API
  • Forum
  • Store

Where to get legit nRF24L01+ modules?

Scheduled Pinned Locked Moved Hardware
counterfeitnrf24l01+nrf24l01+pa+lna
85 Posts 9 Posters 24.3k Views 12 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.
  • Bogus ExceptionB Offline
    Bogus ExceptionB Offline
    Bogus Exception
    wrote on last edited by Bogus Exception
    #48

    So far I've noticed on all versions of the legit nRF24 chips that the 'square' is actually 4 vertical lines, covering a square area, at the 'top left' of the chip.

    Just tried over the past 2 hours to replace the clone in my MyController gateway with either the itead or ebyte legit modules, and neither one of them would communicate with the other nodes. I put the clone back in, and it worked. Weird.

    Not like it matters much, but here is the sketch (all comments removed) using a BME280 and a light sensor module, on a Nano, USB powered:

    #define MY_DEBUG
    #define MY_RADIO_NRF24
    #define MY_RF24_PA_LEVEL RF24_PA_LOW
    #define MY_GATEWAY_SERIAL
    #if F_CPU == 8000000L
    #define MY_BAUD_RATE 38400
    #endif
    #include <Adafruit_Sensor.h>
    #include <Adafruit_BME280.h>
    #define BME_SCK 13
    #define BME_MISO 12
    #define BME_MOSI 11
    #define BME_CS 6
    #define SEALEVELPRESSURE_HPA (1013.25)
    const float ALTITUDE = 18;
    Adafruit_BME280 bme(BME_CS); // hardware SPI
    #define LIGHT_CHILD 0
    #define BARO_CHILD 1
    #define TEMP_CHILD 2
    #define HUM_CHILD 3
    boolean metric;
    uint8_t decimals;
    #include <MySensors.h>
    MyMessage lightMsg(LIGHT_CHILD, V_LIGHT_LEVEL); // 0
    MyMessage pressureMsg(BARO_CHILD, V_PRESSURE); // 1
    MyMessage tempMsg(TEMP_CHILD, V_TEMP); // 2
    MyMessage humMsg(HUM_CHILD, V_HUM); // 3
    #define LIGHT_SENSOR_ANALOG_PIN 0
    int lastLightLevel;
    unsigned long SLEEP_TIME = 60000; // Sleep time between reads (in milliseconds)
    void setup()
    {
      #ifdef MY_DEBUG
        Serial.begin(115200);
      #endif
      decimals = 2;
      metric = getControllerConfig().isMetric; 
      bool status;
      status = bme.begin();
      if (!status) {
        #ifdef MY_DEBUG
          Serial.println("Could not find a valid BME280 sensor, check wiring!");
        #endif
        while (1);
      }
    }
    void presentation()
    {
      sendSketchInfo("Master Nano", "1.0");
      present(LIGHT_CHILD, S_LIGHT_LEVEL);  // 0
      present(BARO_CHILD, S_BARO);          // 1
      present(TEMP_CHILD, S_TEMP);          // 2
      present(HUM_CHILD, S_HUM);            // 3
    }
    void loop()
    {
      int16_t lightLevel = (1023-analogRead(LIGHT_SENSOR_ANALOG_PIN))/10.23;
      if (lightLevel != lastLightLevel) {
        #ifdef MY_DEBUG
          Serial.print(F("Sending lightMsg: "));
          Serial.println(String(lightLevel));
        #endif
        send(lightMsg.set(lightLevel));
        lastLightLevel = lightLevel;
      }
      float p_Mb = bme.readPressure() / 100.0F;
      float p_Hg = p_Mb / 33.86;
      #ifdef MY_DEBUG
        Serial.print(F("Sending pressureMsg: "));
        Serial.println(String(p_Hg));
      #endif
      send(pressureMsg.set(p_Hg, decimals));
      float t_C = bme.readTemperature();
      float t_F = (t_C * (9/5)) + 32;
      #ifdef MY_DEBUG
        Serial.print(F("Sending tempMsg: "));
        Serial.println(String(t_F));
      #endif
      send(tempMsg.set(t_F, decimals));
      float h_Pct = bme.readHumidity();
      #ifdef MY_DEBUG
        Serial.print(F("Sending humMsg: "));
        Serial.println(String(h_Pct));
      #endif
      send(humMsg.set(h_Pct, decimals));  
      #ifdef MY_DEBUG
        Serial.print(F("Sleeping for: "));
        Serial.println(String(SLEEP_TIME));
      #endif
      sleep(SLEEP_TIME);
    }
    

    It works with the clone... I am using a regulator board for the nRF24-the one it plugs into & breaks out the 8 pins...

    "If you drop it and it breaks, it was good." ~ Mr. Lehr, my Electronics Vo-Tech teacher, on testing vacuum tubes...
    -Arduinos (UNO, Nano, Pro-Mini, Mega, ...)
    -ATTiny, ATMega, STM32
    -Geek Channel: https://www.youtube.com/TheSalesEngineer

    YveauxY gohanG 2 Replies Last reply
    0
    • Bogus ExceptionB Bogus Exception

      So far I've noticed on all versions of the legit nRF24 chips that the 'square' is actually 4 vertical lines, covering a square area, at the 'top left' of the chip.

      Just tried over the past 2 hours to replace the clone in my MyController gateway with either the itead or ebyte legit modules, and neither one of them would communicate with the other nodes. I put the clone back in, and it worked. Weird.

      Not like it matters much, but here is the sketch (all comments removed) using a BME280 and a light sensor module, on a Nano, USB powered:

      #define MY_DEBUG
      #define MY_RADIO_NRF24
      #define MY_RF24_PA_LEVEL RF24_PA_LOW
      #define MY_GATEWAY_SERIAL
      #if F_CPU == 8000000L
      #define MY_BAUD_RATE 38400
      #endif
      #include <Adafruit_Sensor.h>
      #include <Adafruit_BME280.h>
      #define BME_SCK 13
      #define BME_MISO 12
      #define BME_MOSI 11
      #define BME_CS 6
      #define SEALEVELPRESSURE_HPA (1013.25)
      const float ALTITUDE = 18;
      Adafruit_BME280 bme(BME_CS); // hardware SPI
      #define LIGHT_CHILD 0
      #define BARO_CHILD 1
      #define TEMP_CHILD 2
      #define HUM_CHILD 3
      boolean metric;
      uint8_t decimals;
      #include <MySensors.h>
      MyMessage lightMsg(LIGHT_CHILD, V_LIGHT_LEVEL); // 0
      MyMessage pressureMsg(BARO_CHILD, V_PRESSURE); // 1
      MyMessage tempMsg(TEMP_CHILD, V_TEMP); // 2
      MyMessage humMsg(HUM_CHILD, V_HUM); // 3
      #define LIGHT_SENSOR_ANALOG_PIN 0
      int lastLightLevel;
      unsigned long SLEEP_TIME = 60000; // Sleep time between reads (in milliseconds)
      void setup()
      {
        #ifdef MY_DEBUG
          Serial.begin(115200);
        #endif
        decimals = 2;
        metric = getControllerConfig().isMetric; 
        bool status;
        status = bme.begin();
        if (!status) {
          #ifdef MY_DEBUG
            Serial.println("Could not find a valid BME280 sensor, check wiring!");
          #endif
          while (1);
        }
      }
      void presentation()
      {
        sendSketchInfo("Master Nano", "1.0");
        present(LIGHT_CHILD, S_LIGHT_LEVEL);  // 0
        present(BARO_CHILD, S_BARO);          // 1
        present(TEMP_CHILD, S_TEMP);          // 2
        present(HUM_CHILD, S_HUM);            // 3
      }
      void loop()
      {
        int16_t lightLevel = (1023-analogRead(LIGHT_SENSOR_ANALOG_PIN))/10.23;
        if (lightLevel != lastLightLevel) {
          #ifdef MY_DEBUG
            Serial.print(F("Sending lightMsg: "));
            Serial.println(String(lightLevel));
          #endif
          send(lightMsg.set(lightLevel));
          lastLightLevel = lightLevel;
        }
        float p_Mb = bme.readPressure() / 100.0F;
        float p_Hg = p_Mb / 33.86;
        #ifdef MY_DEBUG
          Serial.print(F("Sending pressureMsg: "));
          Serial.println(String(p_Hg));
        #endif
        send(pressureMsg.set(p_Hg, decimals));
        float t_C = bme.readTemperature();
        float t_F = (t_C * (9/5)) + 32;
        #ifdef MY_DEBUG
          Serial.print(F("Sending tempMsg: "));
          Serial.println(String(t_F));
        #endif
        send(tempMsg.set(t_F, decimals));
        float h_Pct = bme.readHumidity();
        #ifdef MY_DEBUG
          Serial.print(F("Sending humMsg: "));
          Serial.println(String(h_Pct));
        #endif
        send(humMsg.set(h_Pct, decimals));  
        #ifdef MY_DEBUG
          Serial.print(F("Sleeping for: "));
          Serial.println(String(SLEEP_TIME));
        #endif
        sleep(SLEEP_TIME);
      }
      

      It works with the clone... I am using a regulator board for the nRF24-the one it plugs into & breaks out the 8 pins...

      YveauxY Offline
      YveauxY Offline
      Yveaux
      Mod
      wrote on last edited by
      #49

      @Bogus-Exception said in Where to get legit nRF24L01+ modules?:

      So far I've noticed on all versions of the legit nRF24 chips that the 'square' is actually 4 vertical lines, covering a square area, at the 'top left' of the chip.

      You cannot rely on the print of the nRF to distinguish fake from genuine. Nordic is fabless, so they use different factories to produce their chips, each with its own specific marking.

      http://yveaux.blogspot.nl

      Bogus ExceptionB 1 Reply Last reply
      1
      • Bogus ExceptionB Bogus Exception

        So far I've noticed on all versions of the legit nRF24 chips that the 'square' is actually 4 vertical lines, covering a square area, at the 'top left' of the chip.

        Just tried over the past 2 hours to replace the clone in my MyController gateway with either the itead or ebyte legit modules, and neither one of them would communicate with the other nodes. I put the clone back in, and it worked. Weird.

        Not like it matters much, but here is the sketch (all comments removed) using a BME280 and a light sensor module, on a Nano, USB powered:

        #define MY_DEBUG
        #define MY_RADIO_NRF24
        #define MY_RF24_PA_LEVEL RF24_PA_LOW
        #define MY_GATEWAY_SERIAL
        #if F_CPU == 8000000L
        #define MY_BAUD_RATE 38400
        #endif
        #include <Adafruit_Sensor.h>
        #include <Adafruit_BME280.h>
        #define BME_SCK 13
        #define BME_MISO 12
        #define BME_MOSI 11
        #define BME_CS 6
        #define SEALEVELPRESSURE_HPA (1013.25)
        const float ALTITUDE = 18;
        Adafruit_BME280 bme(BME_CS); // hardware SPI
        #define LIGHT_CHILD 0
        #define BARO_CHILD 1
        #define TEMP_CHILD 2
        #define HUM_CHILD 3
        boolean metric;
        uint8_t decimals;
        #include <MySensors.h>
        MyMessage lightMsg(LIGHT_CHILD, V_LIGHT_LEVEL); // 0
        MyMessage pressureMsg(BARO_CHILD, V_PRESSURE); // 1
        MyMessage tempMsg(TEMP_CHILD, V_TEMP); // 2
        MyMessage humMsg(HUM_CHILD, V_HUM); // 3
        #define LIGHT_SENSOR_ANALOG_PIN 0
        int lastLightLevel;
        unsigned long SLEEP_TIME = 60000; // Sleep time between reads (in milliseconds)
        void setup()
        {
          #ifdef MY_DEBUG
            Serial.begin(115200);
          #endif
          decimals = 2;
          metric = getControllerConfig().isMetric; 
          bool status;
          status = bme.begin();
          if (!status) {
            #ifdef MY_DEBUG
              Serial.println("Could not find a valid BME280 sensor, check wiring!");
            #endif
            while (1);
          }
        }
        void presentation()
        {
          sendSketchInfo("Master Nano", "1.0");
          present(LIGHT_CHILD, S_LIGHT_LEVEL);  // 0
          present(BARO_CHILD, S_BARO);          // 1
          present(TEMP_CHILD, S_TEMP);          // 2
          present(HUM_CHILD, S_HUM);            // 3
        }
        void loop()
        {
          int16_t lightLevel = (1023-analogRead(LIGHT_SENSOR_ANALOG_PIN))/10.23;
          if (lightLevel != lastLightLevel) {
            #ifdef MY_DEBUG
              Serial.print(F("Sending lightMsg: "));
              Serial.println(String(lightLevel));
            #endif
            send(lightMsg.set(lightLevel));
            lastLightLevel = lightLevel;
          }
          float p_Mb = bme.readPressure() / 100.0F;
          float p_Hg = p_Mb / 33.86;
          #ifdef MY_DEBUG
            Serial.print(F("Sending pressureMsg: "));
            Serial.println(String(p_Hg));
          #endif
          send(pressureMsg.set(p_Hg, decimals));
          float t_C = bme.readTemperature();
          float t_F = (t_C * (9/5)) + 32;
          #ifdef MY_DEBUG
            Serial.print(F("Sending tempMsg: "));
            Serial.println(String(t_F));
          #endif
          send(tempMsg.set(t_F, decimals));
          float h_Pct = bme.readHumidity();
          #ifdef MY_DEBUG
            Serial.print(F("Sending humMsg: "));
            Serial.println(String(h_Pct));
          #endif
          send(humMsg.set(h_Pct, decimals));  
          #ifdef MY_DEBUG
            Serial.print(F("Sleeping for: "));
            Serial.println(String(SLEEP_TIME));
          #endif
          sleep(SLEEP_TIME);
        }
        

        It works with the clone... I am using a regulator board for the nRF24-the one it plugs into & breaks out the 8 pins...

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

        @Bogus-Exception may I ask why are you using spi for bme280 sensor instead of i2c?

        Bogus ExceptionB 2 Replies Last reply
        0
        • gohanG gohan

          @Bogus-Exception may I ask why are you using spi for bme280 sensor instead of i2c?

          Bogus ExceptionB Offline
          Bogus ExceptionB Offline
          Bogus Exception
          wrote on last edited by
          #51

          @gohan I already have the 3 pins for SPI in use for the nRF, so adding the BME was just one more pin. Simply conserving pins.

          "If you drop it and it breaks, it was good." ~ Mr. Lehr, my Electronics Vo-Tech teacher, on testing vacuum tubes...
          -Arduinos (UNO, Nano, Pro-Mini, Mega, ...)
          -ATTiny, ATMega, STM32
          -Geek Channel: https://www.youtube.com/TheSalesEngineer

          1 Reply Last reply
          0
          • YveauxY Yveaux

            @Bogus-Exception said in Where to get legit nRF24L01+ modules?:

            So far I've noticed on all versions of the legit nRF24 chips that the 'square' is actually 4 vertical lines, covering a square area, at the 'top left' of the chip.

            You cannot rely on the print of the nRF to distinguish fake from genuine. Nordic is fabless, so they use different factories to produce their chips, each with its own specific marking.

            Bogus ExceptionB Offline
            Bogus ExceptionB Offline
            Bogus Exception
            wrote on last edited by
            #52

            @Yveaux Fair enough. I won't rel on that, but did want to mention the observation.
            On a relatively side note, I got 4 SMD nRF24 cards from eByte, but can't locate any boards to mount them on! The holes are 1.27mm pitch, so I just ordered some 1.27mm headers.
            Has anyone grabbed a board to surface mount solder them at this pitch?

            "If you drop it and it breaks, it was good." ~ Mr. Lehr, my Electronics Vo-Tech teacher, on testing vacuum tubes...
            -Arduinos (UNO, Nano, Pro-Mini, Mega, ...)
            -ATTiny, ATMega, STM32
            -Geek Channel: https://www.youtube.com/TheSalesEngineer

            NeverDieN Nca78N 2 Replies Last reply
            0
            • Bogus ExceptionB Bogus Exception

              @Yveaux Fair enough. I won't rel on that, but did want to mention the observation.
              On a relatively side note, I got 4 SMD nRF24 cards from eByte, but can't locate any boards to mount them on! The holes are 1.27mm pitch, so I just ordered some 1.27mm headers.
              Has anyone grabbed a board to surface mount solder them at this pitch?

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

              @Bogus-Exception said in Where to get legit nRF24L01+ modules?:

              @Yveaux Fair enough. I won't rel on that, but did want to mention the observation.
              On a relatively side note, I got 4 SMD nRF24 cards from eByte, but can't locate any boards to mount them on! The holes are 1.27mm pitch, so I just ordered some 1.27mm headers.
              Has anyone grabbed a board to surface mount solder them at this pitch?

              What's the pitch on most other SMD nRF24L01+ modules? Is it also 1.27mm, or something else? I hadn't paid attention.

              Bogus ExceptionB 1 Reply Last reply
              0
              • NeverDieN NeverDie

                @Bogus-Exception said in Where to get legit nRF24L01+ modules?:

                @Yveaux Fair enough. I won't rel on that, but did want to mention the observation.
                On a relatively side note, I got 4 SMD nRF24 cards from eByte, but can't locate any boards to mount them on! The holes are 1.27mm pitch, so I just ordered some 1.27mm headers.
                Has anyone grabbed a board to surface mount solder them at this pitch?

                What's the pitch on most other SMD nRF24L01+ modules? Is it also 1.27mm, or something else? I hadn't paid attention.

                Bogus ExceptionB Offline
                Bogus ExceptionB Offline
                Bogus Exception
                wrote on last edited by
                #54

                @NeverDie Great question. Mine look like these from a post earlier in this thread, and they are the first I've seen that didn't have their (breadboard-unfriendly) pinout.

                alt text

                "If you drop it and it breaks, it was good." ~ Mr. Lehr, my Electronics Vo-Tech teacher, on testing vacuum tubes...
                -Arduinos (UNO, Nano, Pro-Mini, Mega, ...)
                -ATTiny, ATMega, STM32
                -Geek Channel: https://www.youtube.com/TheSalesEngineer

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

                  Not sure if it's what you mean, but for prototyping purposes you could solder them to generic 1.27mm proto-board, such as this: https://www.aliexpress.com/item/6-X-8CM-spacing-1-27-universal-board-thickness-1-6mm-sided-HASL-PCB-test-board/32774106087.html?spm=a2g0s.9042311.0.0.eD40xE

                  Bogus ExceptionB 1 Reply Last reply
                  1
                  • gohanG Offline
                    gohanG Offline
                    gohan
                    Mod
                    wrote on last edited by
                    #56

                    I think there are adapters to solder the smd version and make them 8 pin compatible or there are generic adapters that can change the pitch

                    1 Reply Last reply
                    0
                    • Bogus ExceptionB Bogus Exception

                      @Yveaux Fair enough. I won't rel on that, but did want to mention the observation.
                      On a relatively side note, I got 4 SMD nRF24 cards from eByte, but can't locate any boards to mount them on! The holes are 1.27mm pitch, so I just ordered some 1.27mm headers.
                      Has anyone grabbed a board to surface mount solder them at this pitch?

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

                      @Bogus-Exception said in Where to get legit nRF24L01+ modules?:

                      On a relatively side note, I got 4 SMD nRF24 cards from eByte, but can't locate any boards to mount them on! The holes are 1.27mm pitch, so I just ordered some 1.27mm headers.
                      Has anyone grabbed a board to surface mount solder them at this pitch?

                      You can use NModule, the footprint highlighted in red color in the image below is compatible
                      alt text

                      https://www.openhardware.io/view/364/NModule

                      Bogus ExceptionB 1 Reply Last reply
                      1
                      • Nca78N Nca78

                        I received my Ebyte modules, not a warranty of authenticity but the nrf chip has a square instead of a dot like all the fakes I have been using until now. I have a few standard SMD modules and a PA LNA version, I will try to make some basic range tests soon compared to the SMD clones.

                        0_1501066269827_IMAG1842_1.jpg

                        Bogus ExceptionB Offline
                        Bogus ExceptionB Offline
                        Bogus Exception
                        wrote on last edited by
                        #58

                        @kalina made these DIP-to-SMD-NRF24L01-adapter, but my need isn't enough quantity to buy the chemicals, pay someone to make a rum of them, or convince my wife that, "We'll sell them and make our money back!" :-[

                        "If you drop it and it breaks, it was good." ~ Mr. Lehr, my Electronics Vo-Tech teacher, on testing vacuum tubes...
                        -Arduinos (UNO, Nano, Pro-Mini, Mega, ...)
                        -ATTiny, ATMega, STM32
                        -Geek Channel: https://www.youtube.com/TheSalesEngineer

                        NeverDieN 1 Reply Last reply
                        0
                        • Nca78N Nca78

                          @Bogus-Exception said in Where to get legit nRF24L01+ modules?:

                          On a relatively side note, I got 4 SMD nRF24 cards from eByte, but can't locate any boards to mount them on! The holes are 1.27mm pitch, so I just ordered some 1.27mm headers.
                          Has anyone grabbed a board to surface mount solder them at this pitch?

                          You can use NModule, the footprint highlighted in red color in the image below is compatible
                          alt text

                          https://www.openhardware.io/view/364/NModule

                          Bogus ExceptionB Offline
                          Bogus ExceptionB Offline
                          Bogus Exception
                          wrote on last edited by
                          #59

                          @Nca78 Not just the module (10 for $15, right?), but the page concept is exactly what I am doing these days. Built in flexibility where it matters!
                          You've clearly spent a lot of time at my stage of tinkering with this!

                          alt text

                          Little touches like PA pinout, etc. makes this cake have more icing then cake! :o

                          "If you drop it and it breaks, it was good." ~ Mr. Lehr, my Electronics Vo-Tech teacher, on testing vacuum tubes...
                          -Arduinos (UNO, Nano, Pro-Mini, Mega, ...)
                          -ATTiny, ATMega, STM32
                          -Geek Channel: https://www.youtube.com/TheSalesEngineer

                          1 Reply Last reply
                          0
                          • Bogus ExceptionB Bogus Exception

                            @kalina made these DIP-to-SMD-NRF24L01-adapter, but my need isn't enough quantity to buy the chemicals, pay someone to make a rum of them, or convince my wife that, "We'll sell them and make our money back!" :-[

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

                            @Bogus-Exception
                            I'm sure the Kalina adapter would be inexpensive if you purchased 3 through OSH PARK because the surface area is small.

                            1 Reply Last reply
                            0
                            • d00616D d00616

                              I have received two of the red modules. This is an X-Ray image of the chip (montage)
                              0_1500731806314_upload-666b869a-0a72-4e85-9575-5e96bf143cee

                              Bogus ExceptionB Offline
                              Bogus ExceptionB Offline
                              Bogus Exception
                              wrote on last edited by
                              #61

                              @d00616 I have to ask...

                              How did you create this image?

                              "If you drop it and it breaks, it was good." ~ Mr. Lehr, my Electronics Vo-Tech teacher, on testing vacuum tubes...
                              -Arduinos (UNO, Nano, Pro-Mini, Mega, ...)
                              -ATTiny, ATMega, STM32
                              -Geek Channel: https://www.youtube.com/TheSalesEngineer

                              d00616D 1 Reply Last reply
                              0
                              • Bogus ExceptionB Bogus Exception

                                @d00616 I have to ask...

                                How did you create this image?

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

                                @Bogus-Exception said in Where to get legit nRF24L01+ modules?:

                                How did you create this image?

                                The image is created with a medical X-Ray machine.

                                Bogus ExceptionB 1 Reply Last reply
                                0
                                • NeverDieN NeverDie

                                  Not sure if it's what you mean, but for prototyping purposes you could solder them to generic 1.27mm proto-board, such as this: https://www.aliexpress.com/item/6-X-8CM-spacing-1-27-universal-board-thickness-1-6mm-sided-HASL-PCB-test-board/32774106087.html?spm=a2g0s.9042311.0.0.eD40xE

                                  Bogus ExceptionB Offline
                                  Bogus ExceptionB Offline
                                  Bogus Exception
                                  wrote on last edited by
                                  #63

                                  @NeverDie What I meant was, I don't have anything in 1.27mm, so now I've ordered enough stuff to keep my 2.54 and 2.0 company! :)

                                  "If you drop it and it breaks, it was good." ~ Mr. Lehr, my Electronics Vo-Tech teacher, on testing vacuum tubes...
                                  -Arduinos (UNO, Nano, Pro-Mini, Mega, ...)
                                  -ATTiny, ATMega, STM32
                                  -Geek Channel: https://www.youtube.com/TheSalesEngineer

                                  1 Reply Last reply
                                  0
                                  • d00616D d00616

                                    @Bogus-Exception said in Where to get legit nRF24L01+ modules?:

                                    How did you create this image?

                                    The image is created with a medical X-Ray machine.

                                    Bogus ExceptionB Offline
                                    Bogus ExceptionB Offline
                                    Bogus Exception
                                    wrote on last edited by
                                    #64

                                    @d00616 Yeah, but I mean, that image doesn't show detail, does it? I thought it was thermal/IR when I first saw it-like it was running.
                                    First time I've seen this tried. Has it worked for other electronics? Is that image you posted what is usually expected?
                                    And most importantly, how did you talk your dentist/radiologist into doing it?! :)

                                    "If you drop it and it breaks, it was good." ~ Mr. Lehr, my Electronics Vo-Tech teacher, on testing vacuum tubes...
                                    -Arduinos (UNO, Nano, Pro-Mini, Mega, ...)
                                    -ATTiny, ATMega, STM32
                                    -Geek Channel: https://www.youtube.com/TheSalesEngineer

                                    1 Reply Last reply
                                    0
                                    • gohanG gohan

                                      @Bogus-Exception may I ask why are you using spi for bme280 sensor instead of i2c?

                                      Bogus ExceptionB Offline
                                      Bogus ExceptionB Offline
                                      Bogus Exception
                                      wrote on last edited by
                                      #65

                                      @gohan Was this wrong? Is there a readon to change?
                                      Ya kind of left me hanging there, buddy! :)

                                      "If you drop it and it breaks, it was good." ~ Mr. Lehr, my Electronics Vo-Tech teacher, on testing vacuum tubes...
                                      -Arduinos (UNO, Nano, Pro-Mini, Mega, ...)
                                      -ATTiny, ATMega, STM32
                                      -Geek Channel: https://www.youtube.com/TheSalesEngineer

                                      gohanG 1 Reply Last reply
                                      0
                                      • Bogus ExceptionB Bogus Exception

                                        @gohan Was this wrong? Is there a readon to change?
                                        Ya kind of left me hanging there, buddy! :)

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

                                        @Bogus-Exception I don't know, I just could not figure out what you were trying to achieve 😀

                                        1 Reply Last reply
                                        1
                                        • Bogus ExceptionB Offline
                                          Bogus ExceptionB Offline
                                          Bogus Exception
                                          wrote on last edited by
                                          #67

                                          With the inability to get signal strength from the nRF24, I'm open to any suggestions to fairly evaluate the boards I've collected. Don't think the wife will let me spring for a spectrum analyzer... :(

                                          "If you drop it and it breaks, it was good." ~ Mr. Lehr, my Electronics Vo-Tech teacher, on testing vacuum tubes...
                                          -Arduinos (UNO, Nano, Pro-Mini, Mega, ...)
                                          -ATTiny, ATMega, STM32
                                          -Geek Channel: https://www.youtube.com/TheSalesEngineer

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


                                          8

                                          Online

                                          11.7k

                                          Users

                                          11.2k

                                          Topics

                                          113.0k

                                          Posts


                                          Copyright 2019 TBD   |   Forum Guidelines   |   Privacy Policy   |   Terms of Service
                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • OpenHardware.io
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular