Search found 1 match
- Thu Jan 21, 2021 6:23 pm
- Forum: General Discussion
- Topic: View Esp Log With Arduino IDE
- Replies: 5
- Views: 33237
Re: View Esp Log With Arduino IDE
Most of the time I use platform IO, but as my colleagues use the Arduino IDE, I had the same problem described here. My solution was to include in the very begining of the .ino file, before the includes: #ifdef CORE_DEBUG_LEVEL #undef CORE_DEBUG_LEVEL #endif #define CORE_DEBUG_LEVEL 3 #define LOG_LO...