Pengujian Battery
Dependencies: SDFileSystem TextLCD mbed
Fork of Seeed_SDCard_Shield by
main.cpp
- Committer:
- screamer
- Date:
- 2014-03-25
- Revision:
- 1:93d41c73ac7d
- Parent:
- 0:525c842a3c89
- Child:
- 2:f2f5e2324ad4
File content as of revision 1:93d41c73ac7d:
#include "mbed.h" #include "SDFileSystem.h" SDFileSystem sd(D11, D12, D13, D10, "sd"); // MOSI, MISO, SCK, CS Serial pc(USBTX, USBRX); FILE *fp; int main() { wait(2); pc.printf("Initializing\r\n"); fp = fopen("/sd/hello.txt", "r"); if (fp != NULL) { fclose(fp); remove("/sd/hello.txt"); pc.printf("Remove an existing file with the same name\r\n"); } fp = fopen("/sd/hello.txt", "w"); if (fp == NULL) { pc.printf("Unable to write the file\r\n"); } else { fprintf(fp, "mbed SDCard application!"); fclose(fp); pc.printf("File successfully written!\r\n"); } }