Search found 2 matches
- Fri Sep 08, 2023 11:24 pm
- Forum: ESP-AT
- Topic: What Setting to get ESP-AT v2.2.1.0_esp8266 to work on ESP-01 ?
- Replies: 13
- Views: 93043
Re: What Setting to get ESP-AT v2.2.1.0_esp8266 to work on ESP-01 ?
There is no need to compile ESP-AT to install the latest version on an ESP-01S. Follow the instructions on How to Download the Latest Temporary Version of AT Firmware from GitHub to obtain esp8285-1MB-at.zip . Download at.py from from https://github.com/espressif/esp-at/tree/master/tools. Restore th...
- Fri Mar 17, 2023 10:03 pm
- Forum: General Discussion
- Topic: View Esp Log With Arduino IDE
- Replies: 5
- Views: 33309
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_L...