من هنوز مشکلم رفع نشده و هنوز متد Ethernet.begin داره false* برمیگردونه
من این برنامه رو روی آردوینو آپلود کردم :
کابل هم سالم هست و کابل رو هم به مودم وصل کردم.#include <SPI.h>
#include <Ethernet.h>
byte mac[] = {
0x00, 0xAA, 0xBB, 0xCC, 0xDE, 0x02 };
EthernetClient client;
void setup() {
Serial.begin(9600);
if (Ethernet.begin(mac) == 0) {
Serial.println("Failed to configure Ethernet using DHCP");
for( ; ; )
;
}
Serial.print("My IP address: ");
for (byte thisByte = 0; thisByte < 4; thisByte++) {
Serial.print(Ethernet.localIP()[thisByte], DEC);
Serial.print(".");
}
Serial.println();
}
void loop() {
}