SparkFun Forums 

Where electronics enthusiasts find answers.

Have questions about a SparkFun product or board? This is the place to be.
By RBB01
#194343
This board works with an Arduino.cc Uno R3 correctly but with an Arduino.cc Zero there is no output to serialMonitor.

The code is copied from the third code example given in https://learn.sparkfun.com/tutorials/mi ... 1491941006

To enable a successful build for Arduino.cc Zero statement uint8_t index2 = 0; was changed to uint8_t index2 = 0; and all subsequent references to index were replaced with index2.

Identical pin configuration was used for both Arduino boards,

const uint8_t chipSelect = 8;
const uint8_t cardDetect = 9;

from https://www.arduino.cc/en/reference/SPI:

MOSI: ICSP-4, MISO:ICSP-1, SCK:ICSP-3

5V

Arduino 1.6.9, SAMD Boards 1.6.11, W7X64

Is there a configuration where this board will work with an Arduino.cc Zero? Arduino.cc Due?
By RBB01
#194354
From subsequent experiments, pressing the reset button after uploading the program causes the program to execute, but possibly with some noise characters in SerialMonitor, which does not occur with a Uno.
By RBB01
#194696
Correction:

Replace
"To enable a successful build for Arduino.cc Zero statement uint8_t index2 = 0; was changed to uint8_t index2 = 0; and all subsequent references to index were replaced with index2."

With
"To enable a successful build for Arduino.cc Zero statement uint8_t index = 0; was changed to uint8_t index2 = 0; and all subsequent references to index were replaced with index2."