[SOLVED] Odd behaviours - RFID - SM130

In case anyone wishes to know how to get Marc Boon's SM130 library working with the Sparkfun Evacuation shield, it's a very simple fix that Marc was kind enough to email to me.

The RFID Reset and DREADY pins are different on the Sparkfun shield than in his code.

So, add this code:

RFIDuino.pinRESET = 13; // D13
RFIDuino.pinDREADY = 15; // A1

just before:

RFIDuino.reset();

in the example codes with the library (sm130seek.ino etc) and other code you might write yourself.

Good luck!