Beginner Ethernet Shield V1.1

wortelsoft:
First of what operating system are you running? windows, mac, linux?

If windows open a command prompt (start --> run --> type: cmd )

In the command prompt window type ipconfig /all

This will give output similar to this:

Ethernet adapter Local Area Connection 3:

We still need to know if this address is free so the next command we type is ping 192.168.10.201

[code]C:>ping 192.168.10.201

Pinging 192.168.10.201 with 32 bytes of data:

Request timed out.
Request timed out.
Packets: Sent = 4, Received = 0, Lost = 4 (100% loss),




// Enter a MAC address and IP address for your controller below.
// The IP address will be dependent on your local network:
byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };
byte ip[] = { 192,168,1, 177 };[/code]

Change the ip adress to your newly created address.
In this example that would be:


byte ip[] = { 192,168,10, 201 };



Download the code to your arduino.
Now open your web browser and type in the following adress http://192.168.10.201 and see the magic.

Yes i'm having Windows, Thanks Wortelsoft.. i hope it will help me alot..