Nano BLE 33: Softwire I2C not working

Hello!

I have trouble to use the Softwire library on the Arduino Nano 33 BLE Boards.

First things first: I need to use all analog Pins of the BLE 33. I also use some I2C devices. So I decided to use the Softwire library for software-I2C connectivity of the SDA, SCL pins. I've used this library often in the past with the old Arduino Nano, which worked very well.

The following notice on the Arduino BLE 33 website confused me: "I2C pins: As opposed to other Arduino Nano boards, pins A4 and A5 have an internal pull up and default to be used as an I2C Bus so usage as analog inputs is not recommended."

Still, i've installed a test script and tried to connect to my I2C devices (MPU 6050 and DS3231) via pin 6 and 7. Therefor I've modified the first ~10 lines of the standard i2c-scanner example with the Softwire-library and added some buffers:

    // --------------------------------------
    // i2c_scanner
    //
    // Version 1
    //    This program (or code that looks like it)
    //    can be found in many places.
    //    For example on the Arduino.cc forum.
    //    The original author is not know.
    // Version 2, Juni 2012, Using Arduino 1.0.1
    //     Adapted to be as simple as possible by Arduino.cc user Krodal
    // Version 3, Feb 26  2013
    //    V3 by louarnold
    // Version 4, March 3, 2013, Using Arduino 1.0.3
    //    by Arduino.cc user Krodal.
    //    Changes by louarnold removed.
    //    Scanning addresses changed from 0...127 to 1...119,
    //    according to the i2c scanner by Nick Gammon
    //    https://www.gammon.com.au/forum/?id=10896
    // Version 5, March 28, 2013
    //    As version 4, but address scans now to 127.
    //    A sensor seems to use address 120.
    // Version 6, November 27, 2015.
    //    Added waiting for the Leonardo serial communication.
    //
    //
    // This sketch tests the standard 7-bit addresses
    // Devices with higher bit address might not be seen properly.
    //
     
    #include <SoftWire.h>

    SoftWire Wire {6, 7}; // {SDA, SCL}
    byte rxBuffer[32];
    byte txBuffer[32];
     
     
    void setup()
    {

      Serial.begin(9600);
                 
      Serial.println("\nI2C Scanner");
      
      Wire.setRxBuffer(rxBuffer,sizeof(rxBuffer));
      Wire.setTxBuffer(txBuffer,sizeof(txBuffer)); 
      Wire.begin();
     
      
    }
     
     
    void loop()
    {
      byte error, address;
      int nDevices;
     
      Serial.println("Scanning...");
     
      nDevices = 0;
      for(address = 1; address < 127; address++ )
      {
        // The i2c_scanner uses the return value of
        // the Write.endTransmisstion to see if
        // a device did acknowledge to the address.
        Wire.beginTransmission(address);
        error = Wire.endTransmission();
     
        if (error == 0)
        {
          Serial.print("I2C device found at address 0x");
          if (address<16)
            Serial.print("0");
          Serial.print(address,HEX);
          Serial.println("  !");
     
          nDevices++;
        }
        else if (error==4)
        {
          Serial.print("Unknown error at address 0x");
          if (address<16)
            Serial.print("0");
          Serial.println(address,HEX);
        }    
      }
      if (nDevices == 0)
        Serial.println("No I2C devices found\n");
      else
        Serial.println("done\n");
     
      delay(5000);           // wait 5 seconds for next scan
    }

But I can't find any devices. The searching is working well (I have investigate the pins with Logic-Adapter). Also the signals are looking good on my scope.

When change the code to the normal i2c-scanner-example (normal Wire-library) and connect my devices to pin 4 and 5, everything is working well...

Thus, it is really not possible to connect my I2C devices to other digital pins on the Nano BLE 33? And what about the "internal pullup resistors"? They must be inside the nordic-board (because there are no other pullups on the Arduino PCB design...?). In (my) conclusion, pin A4 and A5 is useless for analog readings and are reserved for I2C connections...? That would be too bad...

Maybe someone can give me a hint? Thanks a lot!

Regards,
Klaus

I did a quick google search (which is always worth 5 minutes to try) with this keywords
arduino nano switch off internal pullup resistors

google came up with this
https://forum.arduino.cc/index.php?topic=123176.0

EDIT: I looked onto your picture and saw you are using digital pin D6/D7
The link above is about the analog-pins A6/A7 so this link is not related to your case. sorry.

I'm not too deep into I2C so my estimation could be wrong. The hardware-I2C is able to do a part of the bitbanging in its own. A software-I2C-bus has to do all the bitbanging in software. So maybe the software-I2C might be missing some level-changes. But I'm not too deep into I2C maybe my assumption is totally wrong.
If the arduino is the "master" and controls the clock line all the time it should work

Another point might be that the D6/D7-io-pins might need pullup-resistors activated to make the I2C-bus work
just another quick google-search with keywords arduino soft I2C pullup resistors

Does i2c need pullup resistors?
Pullup resistors need to be connected from the I2C lines to the supply to enable communication as shown in Figure 1. The pullup resistors pull the line high when it is not driven low by the open-drain interface.

best regards Stefan
any newbee can apply the most professional habit from the first line of code they write on their own:
add only ONE thing at a time. Test/debug that ONE thing until that ONE thing works reliable - repeat.
The sad thing is: only the REAL professionals write code this way.

Hi Stefan,

thanks for replying! Yes, I'm using D6/D7 :wink:

In the meantime i found the library SoftwareI2C (GitHub - micooke/SoftwareI2C: Software I2C library for Arduino (Not architecture specific) from Seeed Studio), and it is working with my desired pins! I think, this is strange and have to investigate furthermore, to understand the difference between those libs.

Unfortunately, this SoftwareI2C lib is not working in my PlatformIO IDE...

Is there someone who used the Softwire lib with the Nano 33 an could give me some hints?

Regards!
Klaus