Here's how you can use the uMMC as a simple shield on an Arduino Duemilanove.
The uMMC connects to +5V and GND, and pins 14 and 15 (also known as A0 and A1, or Analog pins 0 and 1).
You will need to put header pins on the uMMC shown below.
And here is how you set it up:
#include "RogueSD.h" #include "NewSoftSerial.h" NewSoftSerial ummc_s(14, 15); RogueSD ummc(ummc_s);
Discussion
am finding it difficult in using arduino library to upload information onto ma SD CARD. can you please help write a program for SD CARD.
There is an example sketch called:
RogueSD_uMMC_Read_Write_Example
that is included with the library. Try it out. Let me know if you have troubles with it.
b
can u please help me with how to integrate all my codes from arduino together. am using a senser, GPS, and uMMC data storage module in an autonomous sea-surface vehicle.
Can you post your code here so we can have a look?
How are you storing the data?
What is the other sensor your using?
b