I need to purchase an arduino board(s) that can connect to Flash, support 6 digital inputs and 6 digital outputs (lighting of a 3V LED). I watched Kevin Hoyt’s video on Flash + arduino…
It certainly makes sense since serproxy seems to implement a sockets interface. Thus, any ethernet enabled device should work though I can’t tell you the details of how you connect them together.
Assuming that’s true, basically, the question you are asking is “what is the best ethernet/arduino solution?”. If one works, they all should work - such is the nature of tcp/ip. I’ve been looking at the ethernet arduinos which have a wiznet 5100 on the board. SF carries the pro version. There is also an Uno with the wiznet chip on it as well as the stacking headers and sd card support. It’s at the R2 level. Unfortunately, I didn’t see it in the SF catalog though adafruit carries it. I’d probably go with the Uno one. You could go the ethernet shield route but that’s more expensive.
I’ve never done anything ethernet with an arduino so you could be right but… Everything I’ve read says that you can use sockets interface with the ethernet shield. The video linked to above speaks explicitly about the sockets interface in flash. I dunno, it sounds like all the parts are there.
… the board supports 4 concurrent connections in the form of a Socket Server or a Client Socket. The latest Flash contains both a Socket Server class and a Client Socket class as well. Of course I only need 1 connection, where either the arduino is running a Socket Server and Flash is running the Client Socket, or vice versa. So… it sounds like this should work. I am ordering an Ethernet Pro + FDI cable. I think I am going to run the Socket Server on Flash and the Client Socket on the arduino, because I think that stands the best chance of not creating errors. I will post my results/findings once I have tested.