รหัสสินค้า | AS10009 |
หมวดหมู่ | Memory/SD Card Adapter |
ราคา | 550.00 บาท |
สถานะสินค้า | พร้อมส่ง |
จำนวน | ชิ้น |
Board Overview
Connect Diagram
For First Time Use
Configuration file parameters Baud: Serial communication baud rate selection (00 corresponds to 2400 baud rate, 01 corresponds to 4800 baud rate). The module baud rate must match the baud rate of the main control serial port printing in order to store data normally.
FileNum: The file sequence number for the next new file (FileNum=0099, the next generated file name will be FILE0099.txt). The file sequence number automatically increments. If the file already exists, it will overwrite the current file.
FileFormat: File storage format, 0-TXT, 1-CSV.
Time: Automatically create files on schedule, 0-Do not create files on schedule, N-Create files every N minutes to store data [N: 0~10080 (one week)].
Note
Num | Silkprint | Description |
---|---|---|
1 | VCC/+ | Power Positive |
2 | GND/- | XX |
3 | RX/R | UART Receive |
4 | TX/T | UART Transmit |
5 | S/SAVE | SAVE pin/button, save the current file, and create a new file to store the following data, save data at low level. |
The SD LED indicator indicates data interaction status between module and storage. It blinks when data is being written or a new file is being created.
Write data to the module through Serial.print, save a file every once in a while.
#define SPIN 6 //Connect to the module Pin S, trigger to save files at low level
uint16_t i = 0;
void setup(void)
{
Serial.begin(9600);
delay(2000); //To aviod data lost, delay a period of time to wait for the module to start
pinMode(SPIN, OUTPUT);
digitalWrite(SPIN, HIGH);
}
void loop(void)
{
Serial.println(String(i));
i++;
if((i % 10) == 0){
digitalWrite(SPIN, LOW);
delay(500);
digitalWrite(SPIN, HIGH);
}
delay(300);
}
NOTE: In the config.txt file, set FileFormat to 1
#define SPIN 6 //Connect to the module Pin S, trigger to save files at low level
uint16_t i = 0;
void setup(void)
{
Serial.begin(9600);
delay(2000); //To aviod data lost, delay a period of time to wait for the module to start
pinMode(SPIN, OUTPUT);
digitalWrite(SPIN, HIGH);
}
void loop(void)
{
Serial.println(String(i));
i++;
if((i % 10) == 0){
digitalWrite(SPIN, LOW);
delay(500);
digitalWrite(SPIN, HIGH);
}
delay(300);
}
Q&A | Some general Arduino Problems/FAQ/Tips |
---|---|
Q | The CONFIG.TXT file isn't automatically generated when the module is powered on. |
A | Make sure you are not using USB host to power the module. And check whether the file system for storage is FAT32. |
Q | The SD indicator is not lit when data is rapidly written to the module. |
A | The SD card has write endurance cycles of 100 thousand times. In order to ensure the SD life, write to SD card once about 50ms or 512 bytes after writing data into the module. |
Q | When will the module enter USB flash drive mode? When to enter data storing mode? |
A | When a USB host is used to connect the module, the module enters the USB flash drive mode, at the time data can't be stored in the module and the CONFIG.TXT file and new blank files will not be automatically generated when the module is powered on. In other cases, the module enters the data storing mode, and the CONFIG.TXT file and new blank files will be generated automatically if the module doesn't have a CONFIG.TXT file. |
Q | What can I do if a file cannot be deleted? |
A | Please format the storage first, and then refer to the methods in "For First Time Use". |
A | For any questions, advice or cool ideas to share, please visit the DFRobot Forum. |
ชำระเงินค่าสินค้าโดยการโอนเงินเข้าบัญชีธนาคาร KBANK, SCB, BBL,TMB
กรุณาเก็บหลักฐานการโอนเงินของท่านไว้เพื่อแจ้งการชำระเงินด้วยค่ะ
ท่านสามารถแจ้งการชำระเงินผ่านระบบอัตโนมัติได้โดย Click Link ข้างล่างค่ะ
https://www.arduitronics.com/informpayment
หน้าที่เข้าชม | 15,393,408 ครั้ง |
ผู้ชมทั้งหมด | 5,896,486 ครั้ง |
เปิดร้าน | 21 พ.ค. 2556 |
ร้านค้าอัพเดท | 16 ก.ย. 2568 |