Windows 10, IDE Arduino 1.8.8, Arduino DUE, board power is via the USB cable.
The two boxes have the text: Arduino DUE and Arduino Ethernet Shield 2, all in caps but I use leading caps here. IOW, I am rather certain these are genuine Arduino components.
Added note: From another thread I did the download for the DUE and tried again. Same results.
Start with the sketch Web Server from David A Mellis and Tom Igoe,, The text of the code was copied from here
https://www.arduino.cc/en/Tutorial/WebServer
It compiles and the IDE appears to go through the motions of uploading the software. But I cannot connect with Chrome. I do see the IP address in the code: 192.168.1.177. There is an Arduino Ethernet board connected and its lights are on. The lights for the Ethernet cable: Left on green, right flashes amber. The other end is in a D-Link router/switch and hard connected to my desktop, not wireless. After the upload I tried the connect, then pressed Reset and tried again. No Joy.
There is a USB cable connected to both ports. Select Tools -> Get Board Info and a dialog with information about the DUE is displayed.
I have no assurance or confidence that the program is actually running. So add an LED blink as described below.
From this site: https://www.arduino.cc/en/tutorial/blink
I added this to setup()
pinMode( LED_BUILTIN, OUTPUT );
Move to loop and add this at the top.
void loop() {
bool light_on = false;
if( light_on == true )
{
digitalWrite( LED_BUILTIN, LOW );
light_on = false;
}
else
{
digitalWrite( LED_BUILTIN, HIGH );
light_on = true;
};
It compiles and uploads but I am not able to detect any activity that can be attributed to the web server app and to the light blink code.
Where on the board is the LED_BUILTIN?
Is there a specific LED that already exists on the board that can be used for this test?
&&&&&&&&&&&
A new Arduino DUE and Ethernet shield were unboxed and connected. At the end of the upload operation the following text is displayed.
CPU reset.
readWord(addr=0)=0x20088000
readWord(addr=0xe000ed00)=0x412fc230
readWord(addr=0x400e0740)=0
readWord(addr=0x400e0940)=0x285e0a60
writeWord(addr=0x400e1a00,value=0xa500000d)
A new Chrome tab was opened and 192.168.1.177 entered, Site cannot be reached. Reset the board, wait 30 seconds, open a new tab, same results.
What should I do differently?
Thank you for your time