Micro Sd Card Reader Module
Rs. 38.00 Rs. 44.00
- Product Code: SEN-SD
- SKU -
- Availability: In Stock
- For Bulk Order 9962060070
Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
- Add the desired memory to your Arduino project to store the data, Media etc.
- Micro SD Card Reader Module also called Micro SD Adaptor which is designed for dual I/O voltages. The Module is a simple solution for transferring data to and from a standard SD card.
- The pinout is directly compatible with Not only with Arduino as shown in the diagram in below, but can also be used with other microcontrollers. Micro SD Card Reader Module has an SPI interface which is compatible with any sd card and it uses 5V or 3.3V power supply which is compatible with Arduino UNO/Mega.SD module has various applications such as data logger, audio, video, graphics.
- There are total of six pins (GND, VCC, MISO, MOSI, SCK, CS), GND to ground, VCC is the power supply, MISO, MOSI, SCK is the SPI bus, CS is the chip select signal pin; 3.3V regulator circuit: LDO regulator output 3.3V as level converter chip, Micro SD card supply.
- With this Module, general AVR microcontroller system can read the signal
SPECIFICATIONS | |
Supply Voltage (V) | 4.5 to 5.5 |
Control Interface | GND, VCC, MISO, MOSI, SCK, CS |
Voltage Regulator | 3.3V |
PCB Size (mm) | 40×24 |
Mounting Hole size | M2 |
Shipment Weight | 0.105 kg |
Shipment Dimensions | 9 × 5 × 2 cm |
OVERVIEW | |
Power supply | 4.5V – 5.5V, 3.3V voltage regulator circuit board |
Positioning holes | 4 M2 screws positioning hole diameter of 2.2mm |
Control Interface | GND, VCC, MISO, MOSI, SCK, CS |
Size | 45 x 28mm |
Net weight | 6g |
PACKAGE INCLUDES:
1 PCS x Micro Sd Card Reader Module
//SOURCE CODE TAKEN FROM BELOW LINK
//https://create.arduino.cc/projecthub/electropeak/sd-card-module-with-arduino-how-to-read-write-data-37f390
#include <SPI.h>
#include <SD.h>
File myFile;
void setup() {
// Open serial communications and wait for port to open:
Serial.begin(9600);
while (!Serial) {
; // wait for serial port to connect. Needed for native USB port only
}
Serial.print("Initializing SD card...");
if (!SD.begin(10)) {
Serial.println("initialization failed!");
while (1);
}
Serial.println("initialization done.");
// open the file for reading:
myFile = SD.open("test.txt");
if (myFile) {
Serial.println("test.txt:");
// read from the file until there's nothing else in it:
while (myFile.available()) {
Serial.write(myFile.read());
}
// close the file:
myFile.close();
} else {
// if the file didn't open, print an error:
Serial.println("error opening test.txt");
}
}
void loop() {
// nothing happens after setup
}
15 days