1
0
mirror of https://github.com/esphome/esphome.git synced 2026-02-08 08:41:59 +00:00

Fix dummy_main.cpp to match new pre_setup signature

Remove compilation timestamp argument as build time is now handled
through build_info_data.h instead of being passed to pre_setup().
This commit is contained in:
David Woodhouse
2025-12-15 09:06:49 +00:00
parent 0f22b23d9a
commit 5eab42441e

View File

@@ -12,7 +12,7 @@
using namespace esphome;
void setup() {
App.pre_setup("livingroom", "LivingRoom", "comment", __DATE__ ", " __TIME__, false);
App.pre_setup("livingroom", "LivingRoom", "comment", false);
auto *log = new logger::Logger(115200, 512); // NOLINT
log->pre_setup();
log->set_uart_selection(logger::UART_SELECTION_UART0);