We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23c66d3 commit d860377Copy full SHA for d860377
src/main.cpp
@@ -20,13 +20,13 @@ static const char *const TAG = "MAIN";
20
void setup()
21
{
22
HWSerial.begin(115200);
23
+ delay(200); // wait for the serial monitor to be ready
24
HWSerial.setDebugOutput(true);
25
ESP_LOGV(TAG, "verbose");
26
ESP_LOGD(TAG, "debug");
27
ESP_LOGI(TAG, "info");
28
ESP_LOGW(TAG, "warning");
29
ESP_LOGE(TAG, "error");
- delay(200); // wait for the serial monitor to be ready
30
std::cout << "Started program" << std::endl;
31
Storage::begin();
32
}
0 commit comments