Reading From SD Card
Is it possible to read and write data to the Industrino via txt file? I know the Ethernet Expanison Module come swith an SD card. Can this SD card be used to store infromation, and allow the industrino to access the data then put it in an array? If so, can I get some help?
Just remember to make sure the SPI speed is below 400000 - the standard IDE configration will not work without this change
On 3 Dec 2018, at 13:07, Shane van Jaarsveldt <shane@industruino.com> wrote:I use this to initialise the SD if (!SD.begin(SD_CHIP_SELECT, SD_SCK_MHZ(4))) { SerialUSB.print("FAIL"); // Fail } else { SerialUSB.print("OK"); //OK }
--
Shane van Jaarsveldt
Sent by Industruino using Odoo ,
Hi, the SD card in the Ethernet module works as any SD card with Arduino so you can have a look at these doc https://www.arduino.cc/en/Reference/SD
Your answer
Please try to give a substantial answer. If you wanted to comment on the question or answer, just use the commenting tool. Please remember that you can always revise your answers - no need to answer the same question twice. Also, please don't forget to vote - it really helps to select the best questions and answers!
Keep Informed
About This Forum
This community is for professionals and enthusiasts of our products and services.
Read GuidelinesQuestion tools
Stats
Asked: 11/14/18, 7:25 PM |
Seen: 2425 times |
Last updated: 12/3/18, 12:03 PM |
I use this to initialise the SD if (!SD.begin(SD_CHIP_SELECT, SD_SCK_MHZ(4))) { SerialUSB.print("FAIL"); // Fail } else { SerialUSB.print("OK"); //OK }