SD-Card-Breakout

http://sites.schaltungen.at/arduino-uno-r3/sd-card-breakout

http://www.linksammlung.info/

http://www.schaltungen.at/

                                                                                             Wels, am 2014-09-02

BITTE nützen Sie doch rechts OBEN das Suchfeld  [                                                              ] [ Diese Site durchsuchen]

DIN A3 oder DIN A4 quer ausdrucken
**********************************************************************************
DIN A4  ausdrucken
*********************************************************



EEPROM
EEPROM-Array 256KB  
I2C-BUS serieller 64KB  EEPROM  24LC64P
http://ww1.microchip.com/downloads/en/devicedoc/21189f.pdf

Read Write Komunikation 
http://www.arduino.cc/playground/Code/I2CEEPROM



*********************************************************



SD-Card-Adapter  SD-Karten-Modul

Micro SD Card Breakout Board Tutorial
https://learn.adafruit.com/adafruit-micro-sd-breakout-board-card-tutorial



https://learn.adafruit.com/adafruit-micro-sd-breakout-board-card-tutorial

microSD Shield - DEV-09802 - SparkFun Electronics


https://www.sparkfun.com/products/9802




https://learn.adafruit.com/ds1307-real-time-clock-breakout-board-kit






*********************************************************
MicroSD card breakout board+       http://www.adafruit.com/products/254
Adafruit Data logging shield for Arduino PRODUCT ID: 243   http://www.adafruit.com/products/243

Adafruit Data Logger Shield

Adafruit Micro SD Card Breakout Board Tutorial https://learn.adafruit.com/adafruit-micro-sd-breakout-board-card-tutorial

SparkFun microSD Shield https://www.sparkfun.com/products/9802

Seeed Studio SD Card Shield V3.0       http://www.seeedstudio.com/wiki/SD_Card_Shield_V3.0

LC Studio  Arduino DIY SD Card Logging Shield http://www.instructables.com/id/Arduino-DIY-SD-Card-Logging-Shield/?lang=de

MMC/SD/SDHC card library

http://www.roland-riegel.de/sd-reader/index.html
http://forum.arduino.cc/index.php/topic,8863.0.html



SD Cards work only at 3.3V
SD CARD MODULE and STACKABLE SD CARD SHIELD http://arduino-info.wikispaces.com/SD-Cards

Using the SD library to log data http://arduino.cc/en/Tutorial/Datalogger

Seeed Studio SD Card shield V4.0 http://www.seeedstudio.com/wiki/SD_Card_shield_V4.0

Seeed Studio   SD Card Shield V4.0    http://www.hwkitchen.com/products/sd-card-shield-v4-0/

Seeed Studio  SD Card Shield  http://www.physicalcomputing.at/shop/article_A-1137000/SD-Card-Shield-%28von-Seeed-Studio%29.html?shop_param=cid%3D1%26aid%3DA-1137000%26

iTead   Stackable SD Card Shield for Arduino http://www.amazon.com/Stackable-SD-Card-Shield-Arduino/dp/B006LRR0IQ

FRANZIS Arduino Wireless SD Shield für Funk-Modul  http://www.elv.at/franzis-arduino-wireless-sd-shield.html/refid/SEM_30007




*********************************************************

Arduino SD card Module

Contents

 [hide

Introduction

GE tech

http://www.geeetech.com/



The Arduino SD Card Shield is a simple solution for transferring data to and from a standard SD card.

The pinout is directly compatible with Arduino, but can also be used with other microcontrollers. It allows you to add mass storage and data logging to your project.

Features

  • Break out board for standard SD card.
  • Contains a switch to select the flash card slot
  • Sits directly on a Arduino
  • Also be used with other microcontrollers

Usage



Document

Another SD card library tinyFAT

example code

Open Files ->Examples ->SD ->datalogger

#include <SD.h>const int chipSelect = 4;void setup(){ Serial.begin(9600); Serial.print("Initializing SD card..."); // make sure that the default chip select pin is set to // output, even if you don't use it: pinMode(10, OUTPUT);  // see if the card is present and can be initialized: if (!SD.begin(chipSelect)) {   Serial.println("Card failed, or not present");   // don't do anything more:   return; } Serial.println("card initialized.");}void loop(){ // make a string for assembling the data to log: String dataString = ""; // read three sensors and append to the string: for (int analogPin = 0; analogPin < 3; analogPin++) {   int sensor = analogRead(analogPin);   dataString += String(sensor);   if (analogPin < 2) {     dataString += ",";    } } File dataFile = SD.open("datalog.txt", FILE_WRITE); if (dataFile) {   dataFile.println(dataString);   dataFile.close();   Serial.println(dataString); }   else {   Serial.println("error opening datalog.txt"); } }


http://www.geeetech.com/wiki/index.php/Arduino_SD_card_Module




DIN A4 ausdrucken
*********************************************************

Impressum: Fritz Prenninger, Haidestr. 11A, A-4600 Wels, Ober-Österreich, mailto:[email protected]
ENDE