Skip to content

Commit

Permalink
Print ESP-IDF version at start
Browse files Browse the repository at this point in the history
  • Loading branch information
MG-5 committed Feb 11, 2024
1 parent fe77c89 commit 94c0665
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion main/led/RenderTask.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,9 @@ void RenderTask::renderProjectInfos()
renderer.print({0, 0}, appDesc->project_name);
snprintf(printBuffer, PrintBufferSize, "%s (%s)", appDesc->date, appDesc->version);
renderer.print({0, 1}, printBuffer);
renderer.print({0, 2}, "by M. Grau und T. Wiesner");
snprintf(printBuffer, PrintBufferSize, "ESP-IDF: (%s)", appDesc->idf_ver);
renderer.print({0, 2}, printBuffer);
renderer.print({0, 3}, "by M. Grau und T. Wiesner");
}

//--------------------------------------------------------------------------------------------------
Expand Down

0 comments on commit 94c0665

Please sign in to comment.