I've been trying to get this right for the past two days but keep getting stuck. I'm going off of these two codes/tutorials:
http://arduino.cc/forum/index.php/topic,7503.0.html
I first connected the Ethernet shield to the arduino uno and then connected the lcd (same one as in the instructables demo). I shifted down the lcd pins like it says in the instructables and ran the "hello world" example from the IDE and it worked brilliantly.
Problem now is in compiling either of the codes from the above two examples. The first I ran into basically told me to change "Client client(server, 80);" to "EthernetClient client(server, 80);".
Now this is the error I'm getting:
Twitter2LCD2.pde:-1: error: no matching function for call to 'EthernetClient::EthernetClient(byte [4], int)'
C:\Documents and Settings\Me\My Documents\Downloads\arduino-1.0.1-windows\arduino-1.0.1\libraries\Ethernet/EthernetClient.h:12: note: candidates are: EthernetClient::EthernetClient(uint8_t)
C:\Documents and Settings\Me\My Documents\Downloads\arduino-1.0.1-windows\arduino-1.0.1\libraries\Ethernet/EthernetClient.h:11: note: EthernetClient::EthernetClient()
C:\Documents and Settings\Me\My Documents\Downloads\arduino-1.0.1-windows\arduino-1.0.1\libraries\Ethernet/EthernetClient.h:8: note: EthernetClient::EthernetClient(const EthernetClient&)
Twitter2LCD2.cpp: In function 'void loop()':
Twitter2LCD2.pde:-1: error: no matching function for call to 'EthernetClient::connect()'
C:\Documents and Settings\Me\My Documents\Downloads\arduino-1.0.1-windows\arduino-1.0.1\libraries\Ethernet/EthernetClient.h:15: note: candidates are: virtual int EthernetClient::connect(IPAddress, uint16_t)
C:\Documents and Settings\Me\My Documents\Downloads\arduino-1.0.1-windows\arduino-1.0.1\libraries\Ethernet/EthernetClient.h:16: note: virtual int EthernetClient::connect(const char*, uint16_t)
I've been going insane trying to find the answer everywhere but can't! Please help.