From efebb0c1f475bc84c24aad81ced53ffc8579468f Mon Sep 17 00:00:00 2001 From: Empire Date: Fri, 22 Sep 2023 22:32:19 +0200 Subject: [PATCH] add time with seconds --- client/bin/Cargo.toml | 2 +- client/bin/src/main.rs | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/client/bin/Cargo.toml b/client/bin/Cargo.toml index d3473c8..51bbb76 100644 --- a/client/bin/Cargo.toml +++ b/client/bin/Cargo.toml @@ -10,7 +10,7 @@ embedded-graphics = "0.8.0" substring = "1.4.5" tinybmp = "0.5.0" openweathermap = { path = "../openweathermap" } -chrono = { version = "0.4.23", default-features = false , features = ["iana-time-zone"] } +chrono = { version = "0.4.23", default-features = false , features = ["clock", "std","iana-time-zone"] } chrono-tz = "0.8.0" colored = "2.0.0" datetime = "0.5.2" diff --git a/client/bin/src/main.rs b/client/bin/src/main.rs index d5d467f..ce0c5c7 100644 --- a/client/bin/src/main.rs +++ b/client/bin/src/main.rs @@ -2,6 +2,7 @@ use std::{time::Duration, fmt::format}; use bit::BitIndex; use chrono_tz::Europe::Berlin; use chrono::{DateTime, NaiveDateTime, Utc, Timelike}; +use chrono::prelude::*; use std::time::{SystemTime, UNIX_EPOCH}; use openweathermap::forecast::Weather; use substring::Substring; @@ -138,7 +139,7 @@ fn render_weather(display: &mut UdpDisplay ,data: &Option::default(); + let cur_time = chrono::offset::Utc::now(); if zoned_time > cur_time { println!("Skipping old result {hour}:{minute} @{time_s}"); } @@ -229,8 +230,8 @@ fn render_weather_icon(condition: &Weather, display: &mut UdpDisplay ){ } fn render_clock(display: &mut UdpDisplay){ - let cur_time = DateTime::::default(); - let europe_time = cur_time.with_timezone(&Berlin); + let time = chrono::offset::Utc::now(); + let europe_time = time.with_timezone(&Berlin); let hour = europe_time.hour(); let minute = europe_time.minute(); let second = europe_time.second(); @@ -373,7 +374,7 @@ fn main() { loop { let st_now = SystemTime::now(); let seconds = st_now.duration_since(UNIX_EPOCH).unwrap().as_secs(); - let delay = time::Duration::from_millis(10000); + let delay = time::Duration::from_millis(500); thread::sleep(delay); // Only request, if the device is present if device_online == true {