From 23044e6f581353c16578eca0bf10c3776facf8f5 Mon Sep 17 00:00:00 2001 From: Guo-Rong <5484552+gkoh@users.noreply.github.com> Date: Fri, 4 Oct 2024 11:55:11 +0930 Subject: [PATCH] Add firmware version to log output. (#137) --- src/main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index 51d058d..578a63b 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -17,6 +17,8 @@ void setup() { Serial.begin(115200); + ESP_LOGI(LOG_TAG, "furble version: '%s'", FURBLE_VERSION); + Furble::Device::init(); Furble::Scan::init(settings_load_esp_tx_power());