Hi,
i have a problem with arduino mega, MFRC522 and ethernet shield.
When all devices are connect the ethernet shield don't work.
This is the connection pin that i used.
/*MFRC522
* Signal Pin Pin
* Arduino Mega MFRC522
* -----------------------------------------------------------------------------
* SPI SS 9 SDA
* SPI SCK 52 SCK
* SPI MOSI 51 MOSI
* SPI MISO 50 MISO
* IRQ
* GND GND GND
* Reset 8 RST
* +3.3V +3.3V +3.3V
*/
#include <SPI.h>
#include <Ethernet.h>
#include <MFRC522.h>
#define RST_PIN 8
#define SS_PIN 9
//#define PIN 10 Ethernet shield
MFRC522 mfrc522(SS_PIN, RST_PIN); // Create MFRC522 instance.
Where is my error?
Thanks