Sensor Data Logger v1.0
ESP32 Data Logger
Loading...
Searching...
No Matches
sd_card.h
Go to the documentation of this file.
1#ifndef _SD_CARD_H_
2#define _SD_CARD_H_
3
4// Pin assignments can be set in menuconfig, see "SD SPI Example Configuration" menu.
5// You can also change the pin assignments here by changing the following 4 lines.
6#define PIN_NUM_MISO 19
7#define PIN_NUM_MOSI 23
8#define PIN_NUM_CLK 18
9#define PIN_NUM_CS 13
10
11const char *SD_CARD_TAG = "SDCARD";
12
13#define MOUNT_POINT "/sdcard"
14
15#endif
const char * SD_CARD_TAG
Definition: sd_card.h:11