Hi,
Maybe not relevant any more but this worked for me:
/*
To use both ethernet shield and EasyVR shield:
Arduino Wire EasyVR
reset blue reset
3.3v ---- 3.3v
5v red 5v
gnd orange gnd
D2 green D12
D3 yellow D13
EasyVR
J12 SW
*/
And adjust the code at 3 places:
//Due to ethernet shield working on 10,1,12,13
//Move EasyVR to 2,3
//SoftwareSerial port(12,13);
SoftwareSerial port(2,3);
//Due to ethernet shield working on 10,1,12,13
//Move EasyVR to 2,3
//NewSoftSerial port(12,13);
NewSoftSerial port(2,3);
//Due to ethernet shield working on 10,1,12,13
//Move EasyVR to 2,3
//bridge.loop(0, 1, 12, 13);
bridge.loop(0, 1, 2, 3);
Rgds
Robert