Ok, I am not very experienced with Arduino, but I really want to do an Ethernet WebSever. I have been trying for two days now without a single drop of progress. Please keep in mind I am a person with no real deep understanding of how IP addresses work. So here we go: I am using this tutorial: Arduino Ethernet Shield Web Server Tutorial I am still on step 2. The problem is, I think, the IP and MAC addresses. In step two, they say "Change the IP address in the sketch to match the IP address range of your network." The problem is, that there are a few different addresses and I do not know which one to use. I go to command prompt and type in ipconfig to get a list of the different addresses, but there are so many. So the first part of my question is: what IP address do I type in to this part of the sketch so I can type some IP into a browser to view my page: IPAddress ip(10, 0, 0, 20); // IP address, may need to change depending on network. OK, part two: So now the problem is the MAC address. I have a little sticker on the Ethernet shield box with a 12 digit code separated by a - per 2 numbers. Now in this part of the sketch: byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED }; there is an 0x and then two letters. So then lets say just for example my sticker says fd-90-rd-65-er-43, do I simply replace the letters after the 0x with my code to make it look like this: 0xfd, 0x90, 0xrd, 0x65, 0xer, 0x43 or do I take out the "0x" to make it look like this: fd, 90, rd, 65, er, 43.
That is the question, please feel free to add other things that could be causing this problem and how to fix them.
Thank you