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
11
const
char
*
SD_CARD_TAG
=
"SDCARD"
;
12
13
#define MOUNT_POINT "/sdcard"
14
15
#endif
SD_CARD_TAG
const char * SD_CARD_TAG
Definition:
sd_card.h:11
firmware
components
sdcard
sd_card.h
v1.0