Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
IIC Not working
#1
All of a sudden none of my sketches using IIC work on my boards.  In the past I have used the sketch below to scan the IIC bus,  I would expect to see several devices detected by default.  However it just says " "No I2C devices found".  I have tested this on several K868 boards.  How could this happen all of a sudden?  It is due to a change in the Arduino IDE environment?  Is it possible that something has changed withing Wire.h?

Many thanks for any assistance.

Code:
// SPDX-FileCopyrightText: 2023 Carter Nelson for Adafruit Industries
//
// SPDX-License-Identifier: MIT
// --------------------------------------
// i2c_scanner
//
// Modified from https://playground.arduino.cc/Main/I2cScanner/
// --------------------------------------

#include <Wire.h>

// Set I2C bus to use: Wire, Wire1, etc.
#define WIRE Wire

void setup() {
  WIRE.begin();

  Serial.begin(9600);
  while (!Serial)
     delay(10);
  Serial.println("\nI2C Scanner");
}


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
}
Reply
#2
before work well? now can't work?
Reply
#3
Yes. Before it was working fine. Now not. I don't kow if it is something that has changed in the IDE environment, or if the board is faulty. Is there a specific version of Wire.h that I should use?
Reply
#4
take a photo of your PCB. you can download KCS firmware to test. if KCS can't work, that mean board is broken.
Reply
#5
Yes! You are right.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)