i'm trying to make a direct connection between a computer and Arduino using a ethernet cross-over cable where Arduino is supposed to be the master and the computer is supposed to be the client
on the arduino-side of the connection:
Dim Server As EthernetServerSocket
Server.Initialize(ServerPort, "NewConnection")
Server.Listen
My problem is the computer side of the connection: (B4J)
It seems as the problem is with B4J: i have two ethernet connections: one connection is the WiFi-connection and the other connection is the ethernet adapter.
When i try to connect the socket in B4J, nothing happens in B4R.
Maybe B4J is trying to connect the socket using WiFi?
Is there a way to make sure that B4J uses the ethernet adapter?