From 3c7d7fb4c31f08af0499ddae7dd9a04a28b8ae90 Mon Sep 17 00:00:00 2001 From: Stanley Huang <stanleyhuangyc@gmail.com> Date: Fri, 10 Jun 2016 09:22:09 +1000 Subject: Experimental ESP8266 OBD-II data logger --- esplogger/config.h | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 esplogger/config.h (limited to 'esplogger/config.h') diff --git a/esplogger/config.h b/esplogger/config.h new file mode 100644 index 0000000..aa60fb1 --- /dev/null +++ b/esplogger/config.h @@ -0,0 +1,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 -- cgit v1.2.3