Arduino library for WTV020-SD-16P audio module

Thank You very much the-rebel-age for this library and example.
It works great.
And thanks chathuranga for the schematic you posted, it helped.
I have 1.5v module from the link you gave.
I use these 2gb micro SD card for all my Arduino modules that need micro SD(ethernet, tft lcd, etc.).
http://www.amazon.com/gp/product/B000VOU91U/ref=oh_details_o01_s00_i00 and they work great.
Also, for others if you don't want the sounds looping put all the code you need from the void loop part of the sketch in the void setup part(leaving void loop empty or commented out), then you have full control through the module buttons.
This is all you need for setup and loop for simple playback/stop and select.

//Initializes the module.
void setup() {
wtv020sd16p.reset();
}
void loop() {
}

Thanks again!!!