Add DST and boot up sequence

This commit is contained in:
Lauri Võsandi 2021-07-07 08:15:07 +03:00
parent 60bb9dc255
commit 4f6d595bf3
1 changed files with 32 additions and 7 deletions

View File

@ -90,7 +90,7 @@ RESYNC = int(config.get("interval")) # Resync once in 8 hours
print("NTP resynchronization interval", RESYNC, "seconds") print("NTP resynchronization interval", RESYNC, "seconds")
DEBUG = False DEBUG = False
print("Press Ctrl-C now abort main.py execution and to retain keyboard input") print("Press Ctrl-C now to abort main.py execution and retain keyboard input")
sleep_ms(2000) sleep_ms(2000)
import time import time
@ -121,9 +121,22 @@ def bitbang_digit(digit):
bitbang_bit(blink) bitbang_bit(blink)
bitbang_bit(blink) bitbang_bit(blink)
def dump_time(hour, minute, second): def dst_offset(month, day, dow):
if month < 3 or month > 10:
return 0
if month > 3 and month < 10:
return 1
previous_sunday = day - dow
if month == 3:
return int(previous_sunday >= 25)
return int(previous_sunday < 25)
def dump_time(year, month, day, hour, minute, second, dow):
offset = dst_offset(month, day, dow)
if DEBUG: if DEBUG:
print("Time is %02d:%02d:%02d" % (hour, minute, second)) print("Time is %02d:%02d:%02d, dst offset %d" % (hour, minute, second, offset))
hour = (hour + TIMEZONE + offset) % 24
bitbang_digit(hour // 10) bitbang_digit(hour // 10)
bitbang_digit(hour % 10) bitbang_digit(hour % 10)
bitbang_digit(minute // 10) bitbang_digit(minute // 10)
@ -134,28 +147,40 @@ def dump_time(hour, minute, second):
# RTC accuracy is still garbage, time.ticks_ms() which is bound to CPU ticks seems to be more accurate # RTC accuracy is still garbage, time.ticks_ms() which is bound to CPU ticks seems to be more accurate
# https://forum.micropython.org/viewtopic.php?t=3251#p19092 # https://forum.micropython.org/viewtopic.php?t=3251#p19092
# Boot up test sequence
for j in range(0, 10):
for i in range(0, 6):
bitbang_digit(j)
latch.on()
latch.off()
sleep_ms(500)
while True: while True:
if countdown <= 0: if countdown <= 0:
try: try:
ticks_then, time_then = time.ticks_ms(), ntptime.time() ticks_then, time_then = time.ticks_ms(), ntptime.time()
except OSError: except OSError:
sleep_ms(500)
print("Resync failed") print("Resync failed")
continue
else: else:
countdown = RESYNC countdown = RESYNC
print("Resync done") print("Resync done")
else: else:
year, month, day, hour, minute, second, _, _ = time.localtime(time_then + (time.ticks_ms() - ticks_then) // 1000) year, month, day, hour, minute, second, dow, _ = time.localtime(time_then + (time.ticks_ms() - ticks_then) // 1000)
sleep_ms(500-(time.ticks_ms() - ticks_then) % 1000) sleep_ms(500-(time.ticks_ms() - ticks_then) % 1000)
blink = True blink = True
dump_time((hour + TIMEZONE) % 24, minute, second) dump_time(year, month, day, hour, minute, second, dow)
latch.on() latch.on()
latch.off() latch.off()
countdown -= 1 countdown -= 1
year, month, day, hour, minute, second, _, _ = time.localtime(time_then + (time.ticks_ms() - ticks_then) // 1000) year, month, day, hour, minute, second, dow, _ = time.localtime(time_then + (time.ticks_ms() - ticks_then) // 1000)
sleep_ms(1001-(time.ticks_ms() - ticks_then) % 1000) sleep_ms(1001-(time.ticks_ms() - ticks_then) % 1000)
blink = False blink = False
dump_time((hour + TIMEZONE) % 24, minute, second) dump_time(year, month, day, hour, minute, second, dow)
latch.on() latch.on()
latch.off() latch.off()