Skip to content
Snippets Groups Projects
Commit 43ab047f authored by Kien Le's avatar Kien Le
Browse files

Update docs

parent acac918a
No related branches found
No related tags found
1 merge request!139Change the way RT130 data is read for better performance
...@@ -37,7 +37,7 @@ def parse_rt130_time(year: int, time_bytes: bytes) -> UTCDateTime: ...@@ -37,7 +37,7 @@ def parse_rt130_time(year: int, time_bytes: bytes) -> UTCDateTime:
# H = hour # H = hour
# M = minute # M = minute
# S = second # S = second
# T = microsecond # T = millisecond
day_of_year, hour, minute, second, millisecond = ( day_of_year, hour, minute, second, millisecond = (
int(time_string[0:3]), int(time_string[0:3]),
int(time_string[3:5]), int(time_string[3:5]),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment