Yes, the Sparkfun board would definitely be easier!
But to get started with the Adafruit one, use the first example on the File IO page linked above:
// Wire up up MOSI, MISO, SCK and CS pins (along with 3.3v and GND)
SPI1.setup({mosi:B5, miso:B4, sck:B3});
E.connectSDCard(SPI1, B6 /*CS*/);
// see what's on the device
console.log(require("fs").readdirSync());
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
Yes, the Sparkfun board would definitely be easier!
But to get started with the Adafruit one, use the first example on the File IO page linked above:
(and try wiring the SD card as shown above)
For the Sparkfun board their code is a good start: https://github.com/sparkfun/Audio-Sound_Breakout-WTV020SD/blob/V_1.0/firmware/Audio-Sound_Breakout/AudioModule.ino
Just replace
sendCommand
with something like:Also, you know that Espruino can do sounds itself? http://www.espruino.com/Waveform
It may not be significantly worse quality than the Sparkfun board :)