Commit 193b0fb 1 parent adf540c commit 193b0fb Copy full SHA for 193b0fb
File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 2
2
// OBD - ELM327 //
3
3
//////////////////
4
4
// Enable ELM327 (internal) debug logs
5
- #define ENABLE_ELM327_DEBUG_LOGS
5
+ // #define ENABLE_ELM327_DEBUG_LOGS
6
6
7
7
// Mock OBD for testing without real OBD device
8
8
//#define MOCK_OBD
56
56
// Select connection method (only one of the follow)
57
57
58
58
#ifdef ESP32
59
- // #define USE_OBD_BLUETOOTH
60
- #define USE_OBD_WIFI
59
+ #define USE_OBD_BLUETOOTH
60
+ // #define USE_OBD_WIFI
61
61
#endif
62
62
63
63
#ifdef ESP8266
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ class OdbAdapter {
33
33
34
34
#ifdef USE_OBD_WIFI
35
35
WiFiClient SerialDevice;
36
- const char * ssid = " WiFi_OBDII " ;
36
+ const char * ssid = " WIFI_OBDII " ;
37
37
const char * password = " your-password" ;
38
38
const char * server = " 192.168.0.10" ;
39
39
#endif
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ void setup() {
96
96
97
97
// Initialize Serial and set debug level
98
98
debug = new Debug ();
99
- debug->start (115200 , DEBUG_LEVEL_DEBUG2 );
99
+ debug->start (115200 , DEBUG_LEVEL_INFO );
100
100
101
101
debug->println (DEBUG_LEVEL_INFO, " Staring up..." );
102
102
You can’t perform that action at this time.
0 commit comments