Update ratgdo.cpp

This commit is contained in:
Paul Wieland 2024-03-21 14:28:51 -04:00
parent e3eacef44d
commit 705f381a12
1 changed files with 5 additions and 0 deletions

View File

@ -52,6 +52,11 @@ namespace ratgdo {
// many things happening at startup, use some delay for sync // many things happening at startup, use some delay for sync
set_timeout(SYNC_DELAY, [=] { this->sync(); }); set_timeout(SYNC_DELAY, [=] { this->sync(); });
ESP_LOGD(TAG, " _____ _____ _____ _____ ____ _____ ");
ESP_LOGD(TAG, "| __ | _ |_ _| __| \\| |");
ESP_LOGD(TAG, "| -| | | | | | | | | | |");
ESP_LOGD(TAG, "|__|__|__|__| |_| |_____|____/|_____|");
ESP_LOGD(TAG, "https://paulwieland.github.io/ratgdo/");
} }
// initializing protocol, this gets called before setup() because // initializing protocol, this gets called before setup() because