#1 Програмування Arduino » Подключение к Arduino внешнего модуля flash-памяти. » 2016-04-18 16:13:58

Владимир_1988
відповідей: 1

Я подключаю у Arduino UNO модуль с внешней Flash-картой. Код такой:

#include <SPI.h>
#include <SD.h>

...
   
  Serial.print("Initializing SD card...");
  pinMode(10, OUTPUT);
  
...

  if (!SD.begin(10)) 
  {
    Serial.println("SD-Card not inserted!");
    return;
  }
  Serial.println("SD-Card inserted.");

...

Постоянно выдает ошибку: "SD-Card not inserted!"

Уже и флешки менял и модуль менял и форматировал флеш. Ничего не помогает. Не видит, что флешка вставлена и все. Пробовал этот фрагмент закомментировать, вдруг какая-то ошибка непонятного свойства, но даже так, не видит флешку и все. Подскажите, что делать?

#2 Програмування Arduino » DHCP сервер не присваивает IP-адрес Ethernet-шилду. » 2016-04-18 06:49:31

Владимир_1988
відповідей: 0

Доброго дня.
Я хочу подключить в корпоративную локальную сеть Arduino UNO с Ethernet-шилдом.

Код:

#include <SPI.h>
#include <Ethernet.h>

// Enter a MAC address for your controller below.
// Newer Ethernet shields have a MAC address printed on a sticker on the shield
byte mac[] = {  
  0x00, 0xAA, 0xBB, 0xCC, 0xDE, 0x02 };

// Initialize the Ethernet client library
// with the IP address and port of the server 
// that you want to connect to (port 80 is default for HTTP):
EthernetClient client;

void setup() {
  // start the serial library:
  Serial.begin(9600);
  // start the Ethernet connection:
  if (Ethernet.begin(mac) == 0) {
    Serial.println("Failed to configure Ethernet using DHCP");
    // no point in carrying on, so do nothing forevermore:
    for(;;)
      ;
  }
  // print your local IP address:
  Serial.println(Ethernet.localIP());

}

void loop() {

}

В ответ выдает сообщение: "Failed to configure Ethernet using DHCP". Иногда надо долго ждать, 2-3 минуты, а то и больше. Подскажите, пожалуйста, что делать?

Підвал форуму