summaryrefslogtreecommitdiff
path: root/esplogger/config.h
blob: aa60fb17bf2d9a9839705d4cfee3c8fe1497cdd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef CONFIG_H_INCLUDED
#define CONFIG_H_INCLUDED

/**************************************
* Data logging/streaming out
**************************************/
#define ENABLE_DATA_OUT 0
#define ENABLE_DATA_LOG 0
#define USE_SOFTSERIAL 0
//this defines the format of log file
#define LOG_FORMAT FORMAT_CSV

/**************************************
* Choose SD pin here
**************************************/
#define SD_CS_PIN 10 // SD breakout

/**************************************
* Choose LCD model here
**************************************/
LCD_SH1106 lcd;

/**************************************
* Other options
**************************************/
//#define DEBUG Serial
#define DEBUG_BAUDRATE 9600

#endif // CONFIG_H_INCLUDED