At present my setup is an AdaFruit Motor Shield stacked on top of an Arduino MEGA2560r3. My next application would benefit from data logging and I would like to sandwich the Data Logging Shield between the MEGA2560r3 and the Motor Shield. However, it appears that both shields use Arduino pins 10, 11, and 12. Is there a workaround for this or am I out of luck? If one of the shield libraries has to be changed which one would be the easiest?
To get those two to work together, you would need to modify one of the shields to get around the pin conflicts.
The logger is using those pins for SPI communication with the SD card. But hardware SPI on the Mega is on different pins (You need to use software SPI for the stock shield). So the best solution would probably be to re-map those shield pins on the logger board to the hardware SPI pins on the Mega. If you search these forums, there are a few threads on that topic.
Got it - although I was afraid that was what I would read Lesson learned and now confirmed. I know the direction in which to head. You guys are super! It's your customer support (look at the time stamp when AdaFruit posted their reply) that makes me a repeat buyer from AdaFruit!