Skip to content

Commit 193b0fb

Browse files
committed
configuration changes
1 parent adf540c commit 193b0fb

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

include/configuration.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// OBD - ELM327 //
33
//////////////////
44
// Enable ELM327 (internal) debug logs
5-
#define ENABLE_ELM327_DEBUG_LOGS
5+
//#define ENABLE_ELM327_DEBUG_LOGS
66

77
// Mock OBD for testing without real OBD device
88
//#define MOCK_OBD
@@ -56,8 +56,8 @@
5656
// Select connection method (only one of the follow)
5757

5858
#ifdef ESP32
59-
//#define USE_OBD_BLUETOOTH
60-
#define USE_OBD_WIFI
59+
#define USE_OBD_BLUETOOTH
60+
//#define USE_OBD_WIFI
6161
#endif
6262

6363
#ifdef ESP8266

include/odbAdapter.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class OdbAdapter {
3333

3434
#ifdef USE_OBD_WIFI
3535
WiFiClient SerialDevice;
36-
const char* ssid = "WiFi_OBDII";
36+
const char* ssid = "WIFI_OBDII";
3737
const char* password = "your-password";
3838
const char* server = "192.168.0.10";
3939
#endif

src/main.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ void setup() {
9696

9797
// Initialize Serial and set debug level
9898
debug = new Debug();
99-
debug->start(115200, DEBUG_LEVEL_DEBUG2);
99+
debug->start(115200, DEBUG_LEVEL_INFO);
100100

101101
debug->println(DEBUG_LEVEL_INFO, "Staring up...");
102102

0 commit comments

Comments
 (0)