I have an idea for a project but I'm not sure where to start with this part of it as I've barely used Ethernet shields/modules.
Idea: two boxes with a button and light, and Ethernet(internet) connection. the button on the one box will light up the light on the other box and vise-versa (and maybe more functionality later on). Now the two arduinos wont know (IP) where the other one is, so my thought was have 3rd one that's the middle man that the boxes can talk trough to talk to the other box.
Most simply I want to have 3 arduinos, Arduino-1 will be on a network that has a static IP that I'll know and wont change. But the other two will be on a network (internet access). My thinking is to have Arduino-1 be the middle man because the other two arduinos wont necessarily know where to look IP wise to communicate.
To start off I just need to be able to send essentially On and Off between the boxes, was thinking maybe making a way to check if they're both pressed at the same time and maybe other functions with more inputs later on, but I want to learn how to do a "basic" thing first.
I did a little research and there's a way to open a socket between two arduinos? (where i was reading wasn't very clear how they did it) but this seemed like the best method so there's no weird HTML based communication.
Hope someone can point me in the right direction of where to start