easyVR with Ethernet

Hi,
Here is the solution for an easyvr board and an Arduino with Ethernet Shield:

  • You must put your easyvr shield un SW mode
  • you must change your code like this:
  • NewSoftSerial port(12,13); => NewSoftSerial port(2,3);
  • bridge.loop(0, 1, 12, 13); => bridge.loop(0, 1, 2, 3);
  • And finally:
  • connect pin 12 from the easyvr shield to pin 2 of your Arduino
  • connect pin 13 from the easyvr shield to pin 3 of your Arduino
  • connect +5v from the easyvr shield to +5v of your Arduino
  • connect GND from the easyvr shield to GND of your Arduino
  • connect RESET pin from the easyvr shield to RESET pin of your Arduino

For me, it's working like a charm.
Regards,

Jmi