Red Arduino?
Bought an Arduino Duemilanove and an W5100 Ethernet Shield a few days back. Very nice board and a very nice development environment. Lots of examples on the Internet. Compared the Red Bokito schematics to the Arduino in combination with the Ethernet Shield and found out that there was only one pin that needed extra attention, the reset of the Wiz810MJ. So with an
Int wiz_reset = 3;
pinMode(wiz_reset,OUTPUT);
digitalWrite(wiz_reset,HIGH);
I got the Arduino ethernet software running on the Red Bokito.
