ds3231_gen.py: Remove redundant line.

master
peterhinch 2023-05-02 10:47:45 +01:00
rodzic 717e6cc71a
commit c555c61e2a
1 zmienionych plików z 0 dodań i 1 usunięć

Wyświetl plik

@ -77,7 +77,6 @@ class DS3231:
self.ds3231.readfrom_mem_into(_ADDR, 0, data)
ss, mm, hh, wday, DD, MM, YY = [bcd2dec(x) for x in data]
MM &= 0x1F # Strip century
YY += 2000
# Time from DS3231 in time.localtime() format (less yday)
result = YY, MM, DD, hh, mm, ss, wday - 1, 0