BigW Consortium Gitlab

Commit a0e5b5c6 by David Frey

change openWeatherMap ambient temp interval=10m

parent 06e84ac8
......@@ -83,7 +83,7 @@ void *HttpThreadFunc(void *context)
UpdateTimer = le_timer_Create("owm ambient");
LE_ASSERT_OK(le_timer_SetHandler(UpdateTimer, UpdateTimerHandler));
LE_ASSERT_OK(le_timer_SetMsInterval(UpdateTimer, 1000 * 60 * 1));
LE_ASSERT_OK(le_timer_SetMsInterval(UpdateTimer, 1000 * 60 * 10));
LE_ASSERT_OK(le_timer_SetRepeat(UpdateTimer, 0));
LE_ASSERT_OK(le_timer_Start(UpdateTimer));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment