Skip to main content

Arduino Uno with CC3000 WifiWiFi Shield Cannot Initializedcannot be initialized

I am working on arduino UNOan Arduino Uno and CC3000 WifiWiFi shield. I interfaced it over my arduino. And Added SParkFunArduino and added the SparkFun library SFE_CC3000_Library, then iSFE_CC3000_Library. Then I opened the TestBoard example., but it stuckshangs on setup in the first command wifiwifi.init().init() How

How can iI solve this problem, and how can iI enable debug mode.?

here'sHere's the code Thanks.

Arduino Uno with CC3000 Wifi Shield Cannot Initialized

I am working on arduino UNO and CC3000 Wifi shield. I interfaced it over my arduino. And Added SParkFun library SFE_CC3000_Library, then i opened TestBoard example. but it stucks on setup in the first command wifi.init() How can i solve this problem, and how can i enable debug mode.

here's the code Thanks.

Arduino Uno with CC3000 WiFi Shield cannot be initialized

I am working on an Arduino Uno and CC3000 WiFi shield. I interfaced it over my Arduino and added the SparkFun library SFE_CC3000_Library. Then I opened the TestBoard example, but it hangs on setup in the first command wifi.init().

How can I solve this problem, and how can I enable debug mode?

Here's the code

Source Link

Arduino Uno with CC3000 Wifi Shield Cannot Initialized

I am working on arduino UNO and CC3000 Wifi shield. I interfaced it over my arduino. And Added SParkFun library SFE_CC3000_Library, then i opened TestBoard example. but it stucks on setup in the first command wifi.init() How can i solve this problem, and how can i enable debug mode.

here's the code Thanks.

#include <SPI.h>
#include <SFE_CC3000.h>
#include <utility/netapp.h>

#define DEBUG     1
// Pins
#define CC3000_INT      2   // Needs to be an interrupt pin (D2/D3)
#define CC3000_EN       7   // Can be any digital pin
#define CC3000_CS       10  // Preferred is pin 10 on Uno

// Constants
#define FW_VER_LEN      2   // Length of firmware version in bytes
#define MAC_ADDR_LEN    6   // Length of MAC address in bytes

// Global Variables
SFE_CC3000 wifi = SFE_CC3000(CC3000_INT, CC3000_EN, CC3000_CS);

void setup() {

  int i;
  unsigned char fw_ver[FW_VER_LEN];
  unsigned char mac_addr[MAC_ADDR_LEN];
  
  // Initialize Serial port
  Serial.begin(115200);
  Serial.println();
  Serial.println("----------------------------");
  Serial.println("SparkFun CC3000 - Board Test");
  Serial.println("----------------------------");
  
  // Initialize CC3000 (configure SPI communications)
  if ( wifi.init() ) {
    digitalWrite(13, HIGH);
    Serial.println("CC3000 initialization complete");
  } else {
    Serial.println("Something went wrong during CC3000 init!");
  }
  
  // Read and display CC3000 firmware version
  if ( wifi.getFirmwareVersion(fw_ver) ) {
    Serial.print("Firmware version: ");
    Serial.print(fw_ver[0], DEC);
    Serial.print(".");
    Serial.print(fw_ver[1], DEC);
    Serial.println();
  } else {
    Serial.println("Could not read firmware version from CC3000");
  }    
  
  // Read and display CC3000 MAC address
  if ( wifi.getMacAddress(mac_addr) ) {
    Serial.print("MAC address: ");
    for ( i = 0; i < MAC_ADDR_LEN; i++ ) {
      if ( mac_addr[i] < 0x10 ) {
        Serial.print("0");
      }
      Serial.print(mac_addr[i], HEX);
      if ( i < MAC_ADDR_LEN - 1 ) {
        Serial.print(":");
      }
    }
    Serial.println();
  } else {
    Serial.println("Could not read MAC address from CC3000");
  } 
  
  // Done!
  Serial.println("Finished board test");
  
}

void loop() {
  
  // Do nothing
  delay(1000);
  Serial.println("Loop_Problem");
  
    }