I'm using an Arduino Ethernet which I want to send emails from. But before I get that far I'd like to get the connect to google example going, which I found here in the rreference: ClientConstructor.html
The three magic numbers are:
byte mac[] = { 0x90, 0xA2, 0xDA, 0x00, 0x6A, 0xC7 }; // from the sticker on the back of the board
byte ip[] = {62,123,180,214}; // Hmm, is this right?
byte server[] = { 64, 233, 187, 99 }; // Google
The ip is the ip of my router. Is that the correct thing to put there? I know it is of my router because I get to the config of the router via that address , or via the local version of it (192.168.1.1)
But the client fails to connect. I think that either my magic numbers are wrong or I need to configure my router to accept the arduino link, or...?