From ce5c5d6dd52d8bd62a8279dc8973df6429b4018a Mon Sep 17 00:00:00 2001 From: sharandac Date: Wed, 19 Aug 2020 14:41:38 +0200 Subject: [PATCH] Serial.printf replaced by log_i --- src/app/stopwatch/stopwatch_app_main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/stopwatch/stopwatch_app_main.cpp b/src/app/stopwatch/stopwatch_app_main.cpp index 9dbe538..568e90c 100644 --- a/src/app/stopwatch/stopwatch_app_main.cpp +++ b/src/app/stopwatch/stopwatch_app_main.cpp @@ -177,7 +177,7 @@ static void stop_stopwatch_app_main_event_cb( lv_obj_t * obj, lv_event_t event ) static void reset_stopwatch_app_main_event_cb( lv_obj_t * obj, lv_event_t event ) { switch( event ) { - case( LV_EVENT_CLICKED ): Serial.println("Reset clicked"); + case( LV_EVENT_CLICKED ): log_i("Reset clicked"); stopwatch_milliseconds = 0; stopwatch_app_main_update_stopwatchlabel(); break;