64GB
64GB
SD (Secure Digital)
Class 10
| UHS-I Bus | Yes |
up to 90MB/s
up to 45MB/s
-25C to 85C
1.2V
11mm x 15mm x 1mm
2g
Applications
| The Nitro 64GB SD Card is suitable for use in a variety of applications, including |
IoT devices, such as smart home devices, industrial sensors, and wearables
Smartphones and tablets
Cameras and camcorders
Gaming consoles
Automotive infotainment systems
Medical devices
Industrial control systems
Conclusion
The Nitro 64GB SD Card is a high-performance storage solution that offers a large storage capacity, fast data transfer rates, and low power consumption, making it an ideal choice for a wide range of IoT devices and other applications. Its durability, security, and compatibility features make it a reliable choice for storing critical data in a variety of environments.
Nitro 64GB SD Card DocumentationThe Nitro 64GB SD Card is a high-performance storage component designed for IoT applications. It provides a large storage capacity, fast data transfer rates, and low power consumption, making it an ideal choice for various IoT devices.Physical CharacteristicsCapacity: 64GB
Interface: SDHC/SDXC compatible
Speed Class: U3, V30
Operating Temperature: -25C to 85C
Dimensions: 15mm x 11mm x 1mmTechnical SpecificationsRead Speed: up to 90MB/s
Write Speed: up to 60MB/s
Power Consumption: 1.8V to 3.3V
Compatibility: MicroSD/SDHC/SDXC slotsCode Examples### Example 1: Using the Nitro 64GB SD Card with a Raspberry Pi (Python)In this example, we will demonstrate how to use the Nitro 64GB SD Card with a Raspberry Pi to store and retrieve data. We will create a Python script that writes a file to the SD card and then reads it back.Hardware Requirements:Raspberry Pi (any model)
Nitro 64GB SD Card
SD card adapter (if necessary)Software Requirements:Raspbian OS (or any other compatible OS)
Python 3.xCode:
```python
import os# Mount the SD card
os.system("sudo mount /dev/mmcblk0p1 /mnt")# Create a file on the SD card
with open("/mnt/example.txt", "w") as f:
f.write("Hello, World!")# Read the file from the SD card
with open("/mnt/example.txt", "r") as f:
print(f.read())# Unmount the SD card
os.system("sudo umount /mnt")
```
Note: Make sure to replace `/dev/mmcblk0p1` with the actual device path of your SD card.### Example 2: Using the Nitro 64GB SD Card with an ESP32 Board (C++)In this example, we will demonstrate how to use the Nitro 64GB SD Card with an ESP32 board to store and retrieve data. We will create a C++ program that writes a file to the SD card and then reads it back.Hardware Requirements:ESP32 board (any model)
Nitro 64GB SD Card
SD card adapter (if necessary)Software Requirements:ESP-IDF (or any other compatible framework)
C++ compilerCode:
```c
#include <SD.h>#define SD_CS 5 // SD card CS pinvoid setup() {
Serial.begin(115200);
SPI.begin();
SD.begin(SD_CS);// Create a file on the SD card
File file = SD.open("/example.txt", FILE_WRITE);
file.println("Hello, World!");
file.close();// Read the file from the SD card
file = SD.open("/example.txt", FILE_READ);
while (file.available()) {
Serial.write(file.read());
}
file.close();
}void loop() {
// Nothing to do here
}
```
Note: Make sure to replace `SD_CS` with the actual pin connected to the SD card CS (Chip Select) pin.These examples demonstrate the basic usage of the Nitro 64GB SD Card in different IoT contexts. The SD card can be used with various other microcontrollers and boards, and the code can be adapted accordingly.